diff options
Diffstat (limited to '1553/CH21/EX21.3/21Ex3.sce')
-rw-r--r-- | 1553/CH21/EX21.3/21Ex3.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1553/CH21/EX21.3/21Ex3.sce b/1553/CH21/EX21.3/21Ex3.sce new file mode 100644 index 000000000..88b2face8 --- /dev/null +++ b/1553/CH21/EX21.3/21Ex3.sce @@ -0,0 +1,10 @@ +//chapter 21 Ex 3
+
+clc;
+clear;
+close;
+sInterest=2502.50;
+r=27/2; t=4;
+Sum=sInterest/(1+(r*t/100));
+
+printf("The principle amount is Rs. %d",Sum);
|