题解
2025-02-12 13:55:18
发布于:江苏
0阅读
0回复
0点赞
#include<iostream>
using namespace std;
int x,y,z;
double t;
int main(){
cin>>x>>y>>z>>t;
if(x>=80 && (y>=80||z>=90) && t/60<=6)
{
cout<<"good good good";
}
else
{
cout<<"sorry";
}
}
这里空空如也
有帮助,赞一个