返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {

  6.    
  7.    
  8.     if(!true)
  9.     {
  10.         cout<<"true"<<endl;
  11.     }else
  12.     {
  13.         cout<<"false"<<endl;
  14.     }
  15.     cout<<"============================="<<endl;
  16.    
  17.     if(120 != 120 )   
  18.     {                          
  19.         cout<<"血壓正常~"<<endl;
  20.     }else
  21.     {
  22.         cout<<"血壓異常!!!"<<endl;         
  23.     }

  24.    
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

返回列表