diff options
Diffstat (limited to '1553/CH21/EX21.1/21Ex1.sce')
-rw-r--r-- | 1553/CH21/EX21.1/21Ex1.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1553/CH21/EX21.1/21Ex1.sce b/1553/CH21/EX21.1/21Ex1.sce new file mode 100644 index 000000000..629325463 --- /dev/null +++ b/1553/CH21/EX21.1/21Ex1.sce @@ -0,0 +1,8 @@ +//chapter 21 Ex 1
+
+clc;
+clear;
+close;
+p=68000; r=50/3; t=9/12;
+sInterest=(p*r*t)/100;
+printf("The simple interest is Rs. %d",sInterest);
|