문제
이자를 붙이고 몇 년 후에 증가하는 예금 금액을 계산하는 C 프로그램을 작성하십시오.
해결책
이자를 계산하는 공식은 -
M=((r/100) * t); A=P*exp(M);
여기서 r=이자율
t=아니요. 년
P=입금할 금액
M=일시변수
A=이자 후 최종 금액
알고리즘
START Step 1: declare double variables Step 2: read amount to be deposited Step 3: read rate of interest Step 4: read years you want to deposit Step 5: Calculate final amount with interest I. M=((r/100) * t); II. A=P*exp(M); Step 6: Print final amount STOP
예시
#include<stdio.h> #include<math.h> #include<ctype.h> int main(){ double P,r,t,A,M; printf("amount to be deposit in the bank: "); scanf("%lf",&P); printf("\n enter the rate of interest:"); scanf("%lf",&r); printf("\n How many years you want to deposit:"); scanf("%lf",&t); M=((r/100) * t); A=P*exp(M); printf("\n amount after %0.1lf years with interest is:%0.2lf",t,A); return 0; }
출력
amount to be deposit in the bank: 50000 enter the rate of interest:6.5 How many years you want to deposit:5 amount after 5.0 years with interest is:69201.53