返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     //re:
  7.     if(!!false)
  8.     {
  9.         cout<<"true"<<endl;
  10.     }else
  11.     {
  12.         cout<<"false"<<endl;
  13.     }
  14.    
  15.     if(120 == 120 )  
  16.     {                          
  17.         cout<<"正常~~~~~~~~~"<<endl;
  18.     }else
  19.     {
  20.         cout<<"*不正常呀!!"<<endl;         
  21.     }
  22.     cout<<""<<endl;
  23.       if(120 != 120 )   
  24.     {                          
  25.         cout<<"good"<<endl;
  26.     }else
  27.     {
  28.         cout<<"bad!!!"<<endl;         
  29.     }

  30.     //goto re;   
  31.     system("pause");
  32.     return 0;
  33. }
複製代碼

TOP

返回列表