{ "question_id": 7436897, "question_title": "输入某人的身高(厘米)和体重(公斤),按下式确定此人的体重是否标准、过胖或过瘦", "question_content": "
(1)标准体重=(身高-110)公斤;\n(2)超过标准体重5公斤为过胖;\n(3)低于标准体重5公斤为过瘦。\n例如:输入身高和体重分别为160,60,输出为过胖\n输入身高和体重分别为160,50,输出为标准\n输入身高和体重分别是160,40,输出为过瘦
", "difficulty": "简单", "answer_id": 53409166, "answer_content": "代码如下:
\n\n\n#include <stdio.h>\n\n int main() \n { \n\t int h,w;\n\t printf("请输入身高(厘米)和体重(公斤)");\n\t scanf("%d %d",&h,&w);\n\n\tint s = h - 110;\n\tif( (w-s) > 5)\n\t\tprintf("过胖\\n");\n\telse if( s - w > 5)\n\t\tprintf("过瘦");\n\telse if(s - w == 0)\n\t\tprintf("标准\\n");\n\n\n\t //getchar();\n\t //getchar();\n\t return 0; \n }
\n\n\n", "tag_name": "c语言", "cpp": "#include