时间限制: 1000 ms 内存限制: 65536 KB
提交数: 9434 通过数: 6935
判断一个正整数是否是两位数(即大于等于10且小于等于99)。若该正整数是两位数,输出1,否则输出0。
一个正整数,不超过1000。
一行。若该正整数是两位数,输出1,否则输出0。
54
1
No
#include
#include
#include
#include
using namespace std;
int main()
{
int n;
cin>>n;
if(n>=10&&n<=99)
{
cout<<1<