summaryrefslogtreecommitdiff
path: root/1553/CH21/EX21.12/21Ex12.sce
blob: a1f1a10be9f27f61576e3f7cd730b33330f0fd8b (plain)
1
2
3
4
5
6
7
8
9
//chapter 21 Ex 12

clc;
clear;
close;
Sum=1550; rate1=8/100; rate2=6/100; total=106; 
lent1=(total-(Sum*rate2))/(rate1-rate2);
lent2=Sum-lent1;
mprintf("Money lent at 8 percent is Rs.%.0f and that lent at 6 pecent is Rs.%.0f",lent1,lent2);