blob: a13a43f7e9776242375bd0de313fc2972837c3e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Exa3_1
clc;
clear;
close;
//given data is :
P=20000;//in rupees
n=10;//in years
i=18;//% per annum
F=P*(1+i/100)^n;
disp("Maturity value after 18 years is : "+string(F)+" Rupees.");
//Note : Ans in the book is not correct.
|