summaryrefslogtreecommitdiff
path: root/1553/CH21/EX21.11/21Ex11.sce
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH21/EX21.11/21Ex11.sce')
-rw-r--r--1553/CH21/EX21.11/21Ex11.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1553/CH21/EX21.11/21Ex11.sce b/1553/CH21/EX21.11/21Ex11.sce
new file mode 100644
index 000000000..7a18ece9c
--- /dev/null
+++ b/1553/CH21/EX21.11/21Ex11.sce
@@ -0,0 +1,10 @@
+//chapter 21 Ex 11
+
+clc;
+clear;
+close;
+debt=1092; t=3; SI=12/100;
+year1=(1+SI);
+year2=(1+2*SI);
+instalment=debt/(year1+year2+1);
+mprintf("Each instalment is Rs.%.0f",instalment);