返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int a,b,c;
  7.   cin>>a;
  8.   cin>>b;
  9.   cin>>c;
  10.   if((a>100&&b<5)||c>120)  
  11.   {
  12.   cout<<"ture"<<endl;
  13.   }else
  14.   {
  15.   cout<<"false"<<endl;      
  16.   }  
  17.    
  18.    
  19.    
  20.    
  21.    
  22.    
  23.    
  24.      system("pause");   
  25.      return 0;   
  26. }
複製代碼

TOP

返回列表