竞赛
考级
LS_YZY
#include<iostream> using namespace std; int main(){ int x,y,z,t; cin>>x>>y>>z>>t; if(x<80){ cout<<"sorry"; } else if(y<80&&z<90){ cout<<"sorry"; } else if(t>6*60){ cout<<"sorry"; } else{ cout<<"good good good"; } return 0; }
...
#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if (a1 && b1 && c==1) { cout<<"Yes"; } else { cout<<"No"; } return 0; }
楼易涵c++
???
枫岚
#include<iostream> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; if (a>=80&&(b>=80 || c>=90)&&d<=360){ cout<<"good good good"; }else{ cout<<"sorry"; } return 0; }
阿道夫—奶龙
毛奕程
zsy
有事找大号
事实上还有三差学生
TN Hacker
广州北京路校区-胡天维
//#include<iostream> #include<cstdio> //#include<algorithm> //#include<cmath> //#include<string.h> using namespace std; int main() { int a,b,c,d; scanf("%d%d%d%d",&a,&b,&c,&d); if(a>=80 && (b>=80 || c>=90) && d<=360) printf("good good good"); else printf("sorry"); return 0; }
CuSO4
潜龙暗虎
#include<bits/stdc++.h> using namespace std; int main(){ double x,y,z,t; cin>>x>>y>>z>>t; if(x>=80 and (y>=80 or z>=90) and t/60<=6.0){ cout<<"good good good "; } else cout<<"sorry"; }
回来看看
#include<iostream> #include<cstdio> using namespace std; int main(){ int x,y,z,t; cin>>x>>y>>z>>t; if((((y>=80) || (z>=90)) && (x>=80) && (t<=360))){ cout<<"good good good"; }else{ cout<<"sorry"; } }
Cynthia
#include <bits/stdc++.h> using namespace std; int main(){ int x,y,z,t; cin>>x>>y>>z>>t; if(x>=80&&(y>=80||z>=90)&&t<=360){ cout<<"good good good"; } else{ cout<<"sorry"; } }
菜
共36条