AC代码
2025-12-25 17:45:15
发布于:四川
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
void joker(int n){
if(n<=40){
cout<<"劳逸结合";
}else if(n>40 && n<=60){
cout<<"ACGO";
}else{
cout<<"图书馆";
}
}
int main(){
int n;
cin>>n;
joker(n);
return 0;
}
这里空空如也

有帮助,赞一个