We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f4dd70 commit ff38df9Copy full SHA for ff38df9
Basic/Simple interest
@@ -0,0 +1,8 @@
1
+# * Written By Codezila.org at 05-04-2020 07:25 PM (IST)
2
+#program to find SIMPLE INTEREST...
3
+P = 5000 #initialization.
4
+R = 3
5
+T = 2
6
+SI = (P * R * T)/100 #Formula.
7
+print("SIMPLE INTEREST is :",SI)
8
+print('\n\tCode By codezila.org :)\n\tJoin Us On : <github.com/codezila-org>\n\tFor More Mail Us : <contact@codezila.org>')
0 commit comments