标签:src ott else 基础 int ios math 国家 评价
国家给出了 8 岁男宝宝的标准身高为 130 厘米、标准体重为 27 公斤;8 岁女宝宝的标准身高为 129 厘米、标准体重为 25 公斤。
现在你要根据小宝宝的身高体重,给出补充营养的建议。
输入在第一行给出一个不超过 10 的正整数 N,随后 N 行,每行给出一位宝宝的身体数据:
性别 身高 体重
其中性别
是 1 表示男生,0 表示女生。身高
和体重
都是不超过 200 的正整数。
对于每一位宝宝,在一行中给出你的建议:
duo chi yu!
(多吃鱼);duo chi rou!
(多吃肉);wan mei!
(完美);ni li hai!
(你厉害);shao chi rou!
(少吃肉)。先评价身高,再评价体重。两句话之间要有 1 个空格。
4
0 130 23
1 129 27
1 130 30
0 128 27
ni li hai! duo chi rou! duo chi yu! wan mei! wan mei! shao chi rou! duo chi yu! shao chi rou!
#include <iostream> using namespace std; int main() { int N; int sex,height,weight; cin>>N; while(N--){ cin>>sex>>height>>weight; string out=""; if(sex==1){ if(height<130) out+=" duo chi yu!"; if(height>130) out+=" ni li hai!"; if(height==130) out+=" wan mei!"; if(weight==27) out+=" wan mei!"; if(weight<27) out+=" duo chi rou!"; if(weight>27) out+=" shao chi rou!"; }else{ if(height<129) out+=" duo chi yu!"; if(height>129) out+=" ni li hai!"; if(height==129) out+=" wan mei!"; if(weight==25) out+=" wan mei!"; if(weight<25) out+=" duo chi rou!"; if(weight>25) out+=" shao chi rou!"; } cout<<out.substr(1,out.length()-1)<<endl; } system("pause"); return 0; }
PAT基础级-钻石段位样卷2-7-2 吃鱼还是吃肉 (10 分)
标签:src ott else 基础 int ios math 国家 评价
原文地址:https://www.cnblogs.com/littlepage/p/11966796.html