0
已解决
何冯成
中级光能
中级光能
本人WA零分代码:
#include<iostream>
using namespace std;
int n,b;
struct bmi{
int h,w;
}a[1100];
int main(){
cin>>n;
for(int i=1;i<=n;i++){
cin>>a[i].h>>a[i].w;
b=a[i].w*1.0/(a[i].h/100*a[i].h/100);
if(b<18.5) cout<<"L";
else if(b>=18.5&&b<=23.9) cout<<"N"<<endl;
else if(b>=24&&b<=27) cout<<"F"<<endl;
else if(b>=28&&b<=32) cout<<"VF"<<endl;
else if(b>32)cout<<"VVF"<<endl;
}
return 0;
}
思路肯定没问题
大佬们找错