728x90
적금 계산기
포스트 난이도: 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
'C and C++' 카테고리의 다른 글
[C] c99이란? (2) | 2023.04.14 |
---|---|
[C Examples] 별 모양으로 정사각형 만들기 (0) | 2023.02.01 |
[C Examples] 킬로미터(Km)를 마일(Miles)로 변환하기: scaf(), %.f (0) | 2023.01.31 |
[C Language] 동적 메모리 할당(Dynamic Memory Allocation): Realloc Function (0) | 2022.05.31 |
[C Language] 동적 메모리 할당: Malloc Function (0) | 2022.05.30 |
댓글