#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
int x;
cin>>x;
if(x>=10 && x<=99) cout<<"1";
else cout<<"0";
return 0;
}
1.4-06:判断是否为两位数
判断两位数的C++程序
判断两位数的C++程序
#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
int x;
cin>>x;
if(x>=10 && x<=99) cout<<"1";
else cout<<"0";
return 0;
}

被折叠的 条评论
为什么被折叠?