666
2025-12-27 13:30:05
发布于:广东
8阅读
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;
}
全部评论 1
#include <iostream>
using namespace std;
int main() {
int a;
cin >>a;
if(a>60){
cout <<"图书馆";
}else if(a>40&&a<=60){
cout <<"ACGO";
}else{
cout <<"劳逸结合";
}
return 0;}
1周前 来自 山东
0


有帮助,赞一个