▼2020년/C /C++

[C언어] 과세표준액에 따른 종합소득세 세율을 출력하는 프로그램

ITISIK 2018. 10. 13. 22:37
반응형


#include <stdio.h>

 

int main(void){


double totalIncome = 0;

 

printf("세율을 계산할 '본인의 과세표준 금액을 입력'하세요(단위 : 만원)\n");

 

scanf("%lf", &totalIncome);

//키보드로 입력받은 정수를 totalIncome에 저장함.

 

if (totalIncome <= 1200){ printf("당신의 '세율은 6%%'입니다.\n\n"); }

else if (totalIncome <= 4600){ printf("당신의 '세율은 15%%'입니다.\n\n"); }

else if (totalIncome <= 8800){ printf("당신의 '세율은 24%%'입니다.\n\n"); }

else if (totalIncome <= 15000){ printf("당신의 '세율은 35%%'입니다.\n\n"); }

else if (totalIncome <= 30000){ printf("당신의 '세율은 38%%'입니다.\n\n"); }
else if (totalIncome <= 50000){ printf("당신의 '세율은 40%%'입니다.\n\n"); }

else { printf("당신의 '세율은 42%%'입니다.\n\n"); }

//결과 출력

//cf. 본 종합소득세 세율은 2018년 자료를 가지고 산정한 값입니다.

 

return 0;

//프로그램 종료

 

}


반응형