返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     if(!true)
  8.     {
  9.       cout<<"良好"<<endl;               
  10.     }
  11.     else
  12.     {
  13.       cout<<"不良好"<<endl;  
  14.     }
  15.     cout<<"========================"<<endl;
  16.     if(120!=120)
  17.     {
  18.         cout<<"血壓正常~"<<endl;            
  19.     }
  20.     else
  21.     {
  22.         cout<<"血壓異常~"<<endl;
  23.     }
  24.     system("pause");
  25.     return 0;
  26. }
複製代碼

TOP

返回列表