华师一附中OI组
标题:
判断一个正整数是不是两位数
[打印本页]
作者:
admin
时间:
2018-7-4 17:22
标题:
判断一个正整数是不是两位数
比如99 yes 100 no
作者:
WJL
时间:
2018-7-4 21:27
#include<iostream>
using namespace std;
int a;
int main()
{
cin>>a;
if((a>=10)&&(a<=99))
cout<<"Yes!";
else cout<<"No!";
return 0;
}
复制代码
作者:
JASONZHU
时间:
2018-7-6 22:31
题6.
#include<iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if(x<100 && x>9)
cout<<"YES";
else cout<<"NO";
return 0;
}
复制代码
作者:
郑子川
时间:
2018-7-12 11:43
本帖最后由 郑子川 于 2018-7-14 10:15 编辑
<div class="blockcode"><blockquote>#include <iostream>
int x;
using namespace std;
int main()
{
cin>>x;
if(x<100&&x>9)
{
cout<<"yes";
}
else
{
cout<<"no";
}
return 0;
}
复制代码
作者:
高歌岭
时间:
2018-7-26 07:29
#include<iostream>
using namespace std;
int x;
{
cin>>x;
if(x<100&&x>9)
cout<<"yes";
else cout<<"no";
return 0;
}
复制代码
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2