diff options
Diffstat (limited to '2471/CH3/EX3.2/Ex3_2.sce')
-rwxr-xr-x | 2471/CH3/EX3.2/Ex3_2.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2471/CH3/EX3.2/Ex3_2.sce b/2471/CH3/EX3.2/Ex3_2.sce new file mode 100755 index 000000000..490faae4f --- /dev/null +++ b/2471/CH3/EX3.2/Ex3_2.sce @@ -0,0 +1,12 @@ +clear ;
+clc;
+// Example 3.2
+printf('Example 3.2\n\n');
+printf('Page No. 58\n\n');
+
+// given
+P = 10000;// Principal Amount in Pound
+i = 0.15;// Interest Rate
+n = 4;//years
+Tc = P*(1+i)^n;
+printf('The total repayment after adding compond interest is %.0f Pound\n',Tc)
|