题解(简版)
2025-12-19 17:44:36
发布于:广东
23阅读
0回复
0点赞
用了函数
很慢
#include<bits/stdc++.h>
using namespace std;
bool yes(int a){
if(a>=10){
return true;
}else{
return false;
}
}
int main(){
int a;
cin>>a;
if(yes(a)){
cout<<"yes";
}else{
cout<<"no";
}
return 0;
}
这里空空如也







有帮助,赞一个