#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;
}
[출처] 쉽게 풀어쓴 C언어 Express 6장 Solution|작성자 essentick