返回列表 發帖

if...else 判斷式

  1. //if...else 判斷式    單行註解
  2. #include<iostream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     int score;
  8.     cout<<"請輸入你的分數: ";
  9.     cin>>score;
  10.     if(score>=60)
  11.     {
  12.         cout<<"恭喜你!及格了!"<<endl;
  13.     }else
  14.     {
  15.         cout<<"不及格!斬!"<<endl;
  16.     }
  17.     system("pause");  //系統("暫停")
  18.     return 0;
  19. }

  20. /*  多行註解

  21.    if( 肚子餓 )
  22.    {
  23.        去吃飯
  24.    }else
  25.    {
  26.        繼續打電動     
  27.    }
  28.    
  29. */
複製代碼

  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.     }else
  13.     {
  14.      cout<<"不及格!斬~~"<<endl;   
  15.     }
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

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.     }else
  13.     {
  14.         cout<<"不及格!斬"<<endl;
  15.     }
  16.     system("pause");
  17.     return 0;                 
  18. }
複製代碼

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.     }else
  13.     {
  14.        cout<<"不及格!斬!"<<endl;
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

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. }
複製代碼

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.     }else
  13.     {                          
  14.         cout<<"不及格!斬!"<<endl;                                          
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }   
複製代碼

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.      }else
  13.      {
  14.           cout<<"不及格!"<<endl;
  15.      }
  16.      system("pause");
  17.           return 0;
  18. }
複製代碼

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. }
複製代碼

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. }
複製代碼

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int score;
    cout<<"請輸入你的分數:";
    cin>>score;
    if (score>=60)
    {
        cout<<"恭喜你!及格了!"<<endl;
    }else
    {
        cout<<"不及格!斬"<<endl;
    }
    system("pause");
    return 0;                 
}

TOP

  1.     int a;
  2.     int b;
  3.    
  4.     cout<<"請輸入a:";
  5.     cin>>a;
  6.     cout<<"請輸入b:";
  7.     cin>>b;
  8.    
  9.     cout<<"a="<<a<<endl;
  10.     cout<<"b="<<b<<endl;
  11.    
  12.     if(a<b)
  13.     {
  14.            cout<<"a大於"<<endl;
  15.     }
  16.     else
  17.     {
  18.            cout<<"a小於b<<endl;
  19.     }
  20.      else  if(a<b)
  21.     {
  22.            cout<<"a等於b"<<endl;
  23.     }
  24.    
  25.     system("pause")
  26.     return 0;
  27. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlin>
  3. using namespe std;
  4. int main()
  5. {
  6.     int score
  7.     cout<<"請輸入你的分數"<<endl;
  8.     cin>>score;            
  9.     if(score>=60)
  10.     {
  11.            cout<"恭喜你!及格了!"<<endl
  12.     {else            
  13.     {
  14.            cout<<"不及格!斬!"<<endl;
  15.     }
  16.     system("pause");   
  17.     returno;
複製代碼

TOP

返回列表