728x90
세금 계산기 예제코드: if, else if
포스트 난이도: HOO_Intern
# Example Codes
#include <stdio.h>
#include <stdlib.h>
int main()
{
float salary,tax;
tax = 0;
printf("Income: $");
scanf("%f",&salary);
if (salary < 1000)
{
tax = 0.01 * salary;
}
else if (salary < 2000)
{
salary=salary-1000;
tax = 0.01 * salary;
tax = tax + 10;
}
else if (salary<4000)
{
salary=salary-2000;
tax = 0.02 * salary;
tax = tax + 40;
}
else if (salary<6000)
{
salary=salary-4000;
tax = 0.03 * salary;
tax = tax + 60;
}
else if (salary<10000)
{
salary=salary-6000;
tax = 0.04 * salary;
tax = tax + 100;
}
else
{
salary=salary-10000;
tax = 0.05 * salary;
tax = tax + 100;
}
printf("Amount of tax: $%.2f \n", tax);
printf("Coded by HOO.\n");
return 0;
}
Income: $8000
Amount of tax: $180.00
Coded by HOO.
Income: $12000
Amount of tax: $200.00
Coded by HOO.
728x90
'C and C++ > C and C++ Examples' 카테고리의 다른 글
[C Examples] 입력한 온도 값에 따라 온도 상태 구분하기 예제 코드: if(), else if(), while() (0) | 2023.03.22 |
---|---|
[C Examples] 시간대별 통화요금 계산기 예제코드: if, else, char (0) | 2023.02.20 |
[C Examples] 24시간을 12시간 표기로 바꾸기 예제코드: if(), else (0) | 2023.02.18 |
[C Examples] GPA 계산기 예제코드: if(), else if() (0) | 2023.02.17 |
[C Examples] 7 Digit ISSN, 8번째 숫자 산출하기 예제코드: if(), else(), %d (0) | 2023.02.15 |
댓글