上一页 1 ··· 11 12 13 14 15
摘要: #include <iostream> using namespace std; int main() { int n; cin>>n; if(n>=95 && n<=100){ cout<<"你获得了王者称号"; }else if(n>=90 && n<=94){ cout<<"你获得了星耀称号" 阅读全文
posted @ 2023-01-31 17:09 王一行(小号) 阅读(38) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int main() { int a,b,c; cin>>a>>b; if(a>=10 || b>=20){ cout<<1; }else{ cout<<0; } return 0; } 阅读全文
posted @ 2023-01-31 17:09 王一行(小号) 阅读(18) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15