8장 4번8장 4번

Posted at 2013. 11. 24. 21:47 | Posted in 2학기/C언어

#include <stdio.h>


int get_tax(int);


int main(void)

{

int x;


printf("소득을 입력하시오(만원):");

scanf("%d", &x);


printf("소득세는 %d만원입니다.\n", get_tax(x));


return 0;

}

int get_tax(int income)

{

int result=0;


if(income > 1000)

result = income * 0.1;

else

result = income * 0.8;


return result;

}

'2학기 > C언어' 카테고리의 다른 글

8장 6번  (0) 2013.11.24
8장 5번  (0) 2013.11.24
8장 3번  (0) 2013.11.24
8장 2번  (0) 2013.11.24
8장 1번  (0) 2013.11.24
//