题解
2025-04-20 22:01:44
发布于:江苏
17阅读
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;
}
这里空空如也
有帮助,赞一个