summaryrefslogtreecommitdiff
path: root/1208/CH2/EX2.5.c/Exa5_c.sce
blob: 42d644aac8d36bdb8b22f39fb9267730827e0aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Exa5(c)
clc;
clear;
close;
//given data is :
P=4000;//in rupees
N=9;// months
R=6;// in % per annum
//if interest is reckoned yearly
r=R;// in % per annum
n=(N/12);//in years
Amount3=P*(1+r/100)^n;
CI3=Amount3-P;
disp(CI3,"Compound interest while reckoned yearly :")
//Ans in the book is not correct