竞赛
考级
???
枫岚
#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"; } }
菜
共33条