5 条题解

  • 1
    @ 2025-12-21 21:28:27
    #include<iostream>
    #include<cstdio>
    #include<cctype>
    #include<string.h>
    #include<math.h>
    #include<cmath>
    #include<algorithm>
    #include<iomanip>
    using namespace std;
    int main()
    {
    	long long n;
    	cin>>n;
    	if(n>=10&&n<=99)
    	{
    		cout<<1;
    	}
    	else
    	{
    		cout<<0;
    	} 
    	return 0;
    }
    
    
    
    • 0
      @ 2025-7-4 18:52:03
      #include<iostream>
      using namespace std;
      int main ()
      {
      	int a; 
      	cin >> a;
      	if(a>=10&&a<=99)
      	{
      		cout << 1;
      	}
      	else{
      		cout << 0;
      	}
      }
      
      • -1
        @ 2025-4-20 14:30:11
        #include<iostream>
        using namespace std;
        int main ()
        {
        	int a; 
        	cin >> a;
        	if(a>=10&&a<=99)
        	{
        		cout << 1;
        	}
        	else{
        		cout << 0;
        	}
        }
        
        
        • -2
          @ 2025-1-22 21:29:17
          using namespace std;
          int main()
          {
          	int n;
          	cin >> n;
          	if (n >10&&n<=99)
                  cout << 1;
          	else 
                  cout << 0;
          	return 0;
          }
          
          • -2
            @ 2023-4-24 17:22:18
            #include<iostream>
            using namespace std;
            int main()
            {
            	int n;
            	cin >> n;
            	if (n > 10 && n <= 99)cout << 1;
            	else cout << 0;
            	return 0;
            }
            
            • 1

            信息

            ID
            867
            时间
            1000ms
            内存
            128MiB
            难度
            1
            标签
            递交数
            123
            已通过
            83
            上传者