반응형
#include<stdio.h>
#include<math.h>
int dan(int money,int pluspoint,int year);
int bok(int money,int pluspoint,int year);
int main(void){
int i,money,pluspoint,year,arr[2];
printf("원금을 입력하세요:");
scanf("%d",&money);
printf("이자율을 입력하세요:");
scanf("%d",&pluspoint);
printf("예치기간을 입력하세요(년)):");
scanf("%d",&year);
printf("====================================\n");
printf("년\t단리\t복리\n");
for(i=0; i<year; i++)
{
arr[0]=dan(money,pluspoint,i+1);
arr[1]=bok(money,pluspoint,i+1);
printf("%d\t%d\t%d\n",i+1,arr[0],arr[1]);
}
}
int dan(int money,int pluspoint,int year){
return money*(1+pluspoint/100.0*year);
}
int bok(int money,int pluspoint, int year){
return money*pow(1+pluspoint/100.0,year);
}
반응형
'C++' 카테고리의 다른 글
c++ 동물 클래스 (0) | 2023.01.10 |
---|---|
c++ 데이터 각도 변환 (2) | 2023.01.10 |
c++ 다중상속 (0) | 2023.01.10 |
c++ 다중상속 계산기 (0) | 2023.01.10 |
c++ 구조체 사용 (0) | 2023.01.10 |