返回列表 發帖

[練習] if...else ~~(驚嘆號,true,false)

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {

  6.    
  7.     //  5>4 正確的 true 跑上面的結果   3<4 錯誤的 false 跑下面的結果
  8.     if(!true) // 加了一個驚嘆號 變成反向結果
  9.     {
  10.         cout<<"true"<<endl;
  11.     }else
  12.     {
  13.         cout<<"false"<<endl;
  14.     }
  15.     cout<<"============================="<<endl;
  16.    
  17.     if(120 != 120 )   // != 不等於   120 != 120   ==等於  120 ==120
  18.     {                          
  19.         cout<<"血壓正常~"<<endl;
  20.     }else
  21.     {
  22.         cout<<"血壓異常!!!"<<endl;         
  23.     }

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

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     if(!true)
  7.     {
  8.             cout<<"true"<<endl;
  9.     }else
  10.     {
  11.          cout<<"flase"<<endl;
  12.          
  13.      }
  14.      system("pause");
  15.      return 0;
  16. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. if(!true)
  7. {
  8. cout<<"true"<<endl;
  9. }else
  10. {
  11. cout<<"false"<<endl;
  12. }

  13. system("pause");
  14. return 0;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   if(!true)
  7.   {
  8.     cout<<"true"<<endl;
  9.   }
  10.   else
  11.   {
  12.     cout<<"false"<<endl;   
  13.   }
  14.   system("pause");
  15.   return 0;
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int score;
  7.     cout<<"請輸入你的成績: ";
  8.     cin>>score;
  9.     if(score>=60)
  10.     {
  11.         cout<<"恭喜你及格了,給你糖吃!"<<endl;
  12.     }
  13.     else
  14.     {
  15.         cout<<"不及格!打屁股!"<<endl;
  16.     }
  17.      system("pause");
  18.      return 0;
  19. }     
  20.                      
複製代碼

TOP

返回列表