몇 년 후 예금 금액에 대한 증가된 이자를 계산하는 C 프로그램을 작성하세요
이자 계산 공식은 −
M=((r/100) * t); A=P*exp(M);
여기서 r=이자율
t=no .년
P=예금 금액
' ' s ' s ' s ' s ' s ' s ' ‐ ‐ ‐ ‐ ‐‐‐‐
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
위 내용은 이자금액을 구하는 C언어 공식의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!