6장 7번6장 7번

Posted at 2013. 10. 30. 19:50 | Posted in 2학기/C언어

#include <stdio.h>


int main(void)

{

int height, weight, x;


printf("체중과 키를 입력하시오(키, 체중) : ");

scanf("%d %d", &height, &weight);

x = (height - 100) * 0.9;


if (weight < x)

     printf("저체중 입니다\n");

else if (weight == x)

    printf("표준체중 입니다\n");

 else if (weight > x)

     printf("과체중 입니다.\n");


return 0;

}

 


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

6장 9번  (0) 2013.10.30
6장 8번  (0) 2013.10.30
6장 6번  (0) 2013.10.30
6장 5번  (0) 2013.10.30
6장 3번  (0) 2013.10.30
//