summaryrefslogtreecommitdiff
path: root/1553/CH33/EX33.4
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH33/EX33.4')
-rw-r--r--1553/CH33/EX33.4/33Ex4.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1553/CH33/EX33.4/33Ex4.sce b/1553/CH33/EX33.4/33Ex4.sce
new file mode 100644
index 000000000..4af5b8fed
--- /dev/null
+++ b/1553/CH33/EX33.4/33Ex4.sce
@@ -0,0 +1,10 @@
+//Chapter 33 Ex 4
+
+clc;
+clear;
+close;
+BD=120; TD=110; //given
+t=8/12; //converted in year
+Sum=((BD*TD)/(BD-TD));
+rate= ((100*BD)/(Sum*t));
+mprintf("The sum is Rs.%d \n The rate is %.2f percent",Sum,rate);