【题目描述】
判断一个正整数是否是两位数(即大于等于10且小于等于99)。若该正整数是两位数,输出1,否则输出0。
【输入】
一个正整数,不超过1000。
【输出】
一行。若该正整数是两位数,输出1,否则输出0。
【输入样例】
54
【输出样例】
1
解:
#include <iostream>
#include <cmath>
using namespace std;
int main() {
int a;
cin >> a;
if (a>=10&&a<=99)
cout<<"1";
else
cout <<"0";
return 0;
}
最新回复