华师一附中OI组

标题: 判断一个正整数是不是两位数 [打印本页]

作者: admin    时间: 2018-7-4 17:22
标题: 判断一个正整数是不是两位数
比如99  yes 100 no
作者: WJL    时间: 2018-7-4 21:27
  1. #include<iostream>
  2. using namespace std;
  3. int a;
  4. int main()
  5. {
  6.     cin>>a;
  7.     if((a>=10)&&(a<=99))
  8.         cout<<"Yes!";
  9.     else cout<<"No!";

  10.     return 0;
  11. }
复制代码

作者: JASONZHU    时间: 2018-7-6 22:31
题6.
  1. #include<iostream>
  2. using namespace std;
  3. int x;
  4. int main()
  5. {
  6.     cin>>x;
  7.     if(x<100 && x>9)
  8.     cout<<"YES";
  9.     else cout<<"NO";

  10.     return 0;
  11. }


复制代码

作者: 郑子川    时间: 2018-7-12 11:43
本帖最后由 郑子川 于 2018-7-14 10:15 编辑
  1. <div class="blockcode"><blockquote>#include <iostream>
  2. int x;
  3. using namespace std;
  4. int main()
  5. {
  6.    cin>>x;
  7.    if(x<100&&x>9)
  8.    {
  9.        cout<<"yes";
  10.    }
  11.    else
  12.    {
  13.        cout<<"no";
  14.    }
  15.    return 0;
  16. }
复制代码



作者: 高歌岭    时间: 2018-7-26 07:29
  1. #include<iostream>
  2. using namespace std;
  3. int x;
  4. {
  5.     cin>>x;
  6.     if(x<100&&x>9)
  7.         cout<<"yes";
  8.     else cout<<"no";
  9.     return 0;
  10. }
复制代码





欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2