적금 계산기
포스트 난이도: HOO_Intern
# Example codes
#include <stdio.h>
#include <stdlib.h>
int main()
{
float A, r;
int P, t;
printf("Enter inital balance\n");
scanf("%d", &P);
printf("Enter Annual interest rate\n");
scanf("%f", &r);
printf("Enter how many years\n");
scanf("%d", &t);
A=P*(1+r*t);
printf("The balance after %d years will be (%.2f $)\n", t, A);
printf("Posted by HOO.");
return 0;
}
Enter inital balance
3000
Enter Annual interest rate
2.5
Enter how many years
5
The balance after 5 years will be (40500.00 $)
Posted by HOO.
728x90
'Programming Languages > C and C++' 카테고리의 다른 글
[C Examples/Q&A] 체질량 지수(BMI) 계산하는 예제코드: if, else if, && (0) | 2023.02.07 |
---|---|
[C Examples] 별 모양으로 정사각형 만들기 (0) | 2023.02.01 |
[C Examples] Circle area, circumference of circle 계산기 (0) | 2023.01.31 |
[C Examples] 킬로미터(Km)를 마일(Miles)로 변환하기: scaf(), %.f (0) | 2023.01.31 |
[C Examples] 총 지불액 계산기(팁, 세금 포함): float, scanf, %.f (0) | 2023.01.30 |
댓글