【刷题记录】
写在前面此系列文章仅是对个人刷题的记录,如有错误望大家谅解。
第25次刷题
一、牛客网
1.题目描述:在计算BMI(BodyMassIndex ,身体质量指数)的案例基础上,判断人体胖瘦程度。BMI中国标准如下表所示。
输入描述:
多组输入,每一行包括两个整数,用空格隔开,分别为体重(公斤)和身高(厘米)。
输出描述:
针对每行输入,输出为一行,人体胖瘦程度,即分类。
2.代码
#include <stdio.h>
int main()
{
int high, weight ;
while (scanf("%d%d",&weight, &high) != EOF)
{
float high2 = (float)high / 100;
float BMI = weight / (high2 * high2);
if (BMI < 18.5)
printf("Underweight\n");
else if (BMI >= 18.5 && BMI <= 23.9)
printf("Normal\n");
else if (BMI > 23.9 && BMI <= 27.9)
printf("Overweight\n");
else
printf("Obese\n");
}
return 0;
}
3.感受:一星期没有刷题了,有些生疏。体会到熟能生巧的道理。