题解
2026-03-23 18:38:02
发布于:湖北
18阅读
0回复
0点赞
这题比较简单,还是常规解法
#include<bits/stdc++.h>
using namespace std;
int main(void){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin>>n;
cout<< (n>=10?"yes":"no");
return 0;
}
这里空空如也

有帮助,赞一个