.
2025-10-01 16:26:52
发布于:浙江
4阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
if((a>=50)&&(b>=30)){
cout<<1;
}else{
if((a>=50)&&(b>=15)&&(b<30)){
cout<<2;
}else{
cout<<3;
}
}
return 0;
}
全部评论 1

2025-10-01 来自 浙江
0







有帮助,赞一个