华师一附中OI组
标题:
20210815汤小网课 判断两位数
[打印本页]
作者:
admin
时间:
2021-8-15 11:10
标题:
20210815汤小网课 判断两位数
输入一个正整数,判断是否两位数
作者:
chara723
时间:
2021-8-15 11:12
#include <iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if ((x>=10)&&(x<=99)) cout<<"Y";
else cout<<"N";
return 0;
}
作者:
Discotry
时间:
2021-8-15 11:14
#include<iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if((x>=10)&&(x<=99))
cout<<"是";
else
cout<<"不是";
return 0;
}
作者:
李宸逸
时间:
2021-8-15 11:16
#include <iostream>
using namespace std;
int a;
int main()
{
cin>>a;
if ((a>=10) && (a<=99)) cout<<"yes";
else cout<<"no";
return 0;
}
复制代码
作者:
张飓存
时间:
2021-8-15 11:20
#include<iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if ((x>=10)&&(x<=99)) cout<<"Y";
else cout<<"N";
return 0;
}
作者:
604王泽逸
时间:
2021-8-15 11:23
#include <iostream>
using namespace std;
int a;
int main(){
cin>>a;
if((a>=10)&&(a<=99))cout<<"true";
else cout<<"false";
}
复制代码
作者:
kcy2011
时间:
2021-8-15 11:24
标题:
柯成远8.15作业
#include <iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if((x>=10)&&(x<=99)) cout<<"是两位数";
else cout<<"不是两位数";
return 0;
}
复制代码
作者:
zhaiyucheng
时间:
2021-8-15 11:33
#include <iostream>
using namespace std;
int a;
int main()
{
cin>>a;
if((a>=10)&&(a<=99))cout<<"yes";
else cout<<"no";
return 0;
}
复制代码
作者:
王林烽
时间:
2021-8-15 11:36
#include<iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if((x>=10)&&(x<=99)) cout<<"yes";
else cout<<"no";
return 0;
}
复制代码
作者:
朱逸桐
时间:
2021-8-15 11:41
#include <iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if ((x>=10) && (x<=99)) cout<<"yes";
else cout<<"no";
return 0;
}
复制代码
作者:
7997178
时间:
2021-8-15 11:50
#include<iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if((x>=10)&&(x<=99))cout<<"yes";
else cout<<"no";
return 0;
}
作者:
孙天佑
时间:
2021-8-15 12:42
#include<iostream>
using namespace std;
int y;
int main(){
cin>>y;
if (y<100 && y>9) cout<<"是两位数";
else cout<<"不是两位数";
return 0;
}
复制代码
作者:
新504章紫蕗
时间:
2021-8-15 12:56
#include<iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if ((x>=10)&&(x<=99)) cout<<"Y";
else cout<<"N";
return 0;
}
作者:
叶涵羽
时间:
2021-8-15 13:10
#include <iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if ((x>=10)&&(x<=99)) cout<<"yes";
else cout<<"no";
return 0;
}
作者:
孙宇轩
时间:
2021-8-15 16:57
#include<iostream>
using namespace std;
int y;
int main(){
cin<<y;
b1=(y%100==0) && (y%400==0)
b2=(y%100=!) && (y%4 ==0)
if (b1||b2) cout<<"runnian"
else cout<<"pingnian"
return 0;
}
作者:
wuyiting1030
时间:
2021-8-15 18:48
#include<iostream>
using namespace std;
int a;
int main(){
cin>>a;
if((a>=10)&&(a<=99))cout<<"Y";
else cout<<"N";
return 0;
}
作者:
cody2011
时间:
2021-8-16 18:53
本帖最后由 cody2011 于 2021-8-16 20:22 编辑
#include<iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if((x>9)&&(x<100)) cout<<"YES";
else
cout<<"NO";
return 0;
}
作者:
郭怿涵
时间:
2021-8-17 10:10
#include <iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if ((x>=10) && (x<=99)) cout<<"YES";
else cout<<"NO";
return 0;
}
作者:
Nick
时间:
2021-8-17 16:31
#include<iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if ((x>=10)&&(x<=99)) cout<<"yes";
else cout<<"no";
return 0;
}
复制代码
作者:
xiaqixun
时间:
2021-8-18 08:57
#include <iostream>
using namespace std;
int x;
int main()
{
if((x>=10)&&(x<=99)) cout<<"xiao yu shi";
else cout<<"da yu shi";
return 0;
}
作者:
xiaqixun
时间:
2021-8-20 09:52
#include <iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if((x>=10)&&(x<=99)) cout<<"shi";
else cout<<"bu shi";
return 0;
}
作者:
xiaqixun
时间:
2021-8-20 11:34
#include <iostream>
using namespace std;
int x;
int main()
{
cin>>x;
if((x>=10)&&(x<=99)) cout<<"shi";
else cout<<"bu shi";
return 0;
}
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2