题解 | A75606.整数判断
2025-12-05 23:44:47
发布于:广东
7阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int n;
int main() {
cin >> n;
if(n >= 10){ //判断该数是否大于等于10
cout << "yes";
}
else{
cout << "no";
}
return 0;
}
这里空空如也


有帮助,赞一个