不正经题解
2026-01-26 19:31:06
发布于:上海
3阅读
0回复
0点赞
水题
#include <iostream>
using namespace std;
//开头
int main(){
int n;//定义n
cin>>n;//输入n
if(n>=10 && n<=99){//如果是两位数
cout<<1<<endl;
}
else{
cout<<0<<endl;
}
return 0;
}
这里空空如也




有帮助,赞一个