返回列表 發帖

if...else 判斷式

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"請輸入分數:";
  8.     cin>> score;
  9.    
  10.     if(score >= 60)  // == <= >= > < 判斷式
  11.     {
  12.         cout<<"成績及格了"<<endl;
  13.     }else
  14.     {
  15.         cout<<"成績不及格"<<endl;
  16.     }

  17.     system("pause");
  18.     return 0;  
  19. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"請輸入你的成績:";
  8.     cin>> x;
  9.     if(x >= 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.    
  10.     if(score >= 60)  // == <= >= > < 判斷式
  11.     {
  12.         cout<<"成績及格了"<<endl;
  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 a;
  7.     cout<<"請輸入成績:";
  8.     cin>>a;
  9.     if(a>59)
  10.     {
  11.     cout<<"及格了好棒棒"<<endl;
  12.     }
  13.     else
  14.     {
  15.     cout<<"傻子比我差笑你";
  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 b;
  7.    cout<<"輸入數字:" ;
  8.    cin>> b;
  9.    if(b>=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.    
  10.     if(score>=60)
  11.     {
  12.         cout<<"成績及格了"<<endl;
  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.    
  8.     cout<<"請輸入分數:";
  9.     cin>>score;
  10.    
  11.     if(score >= 60)
  12.     {
  13.         cout<<"成績及格了"<<endl;
  14.     }else
  15.     {
  16.         cout<<"成績不及格"<<endl;
  17.     }     
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"請輸入分數:";
  8.     cin>>x;
  9.     if(x>=60)
  10.     {
  11.              cout<<"及格"<<endl;
  12.     }
  13.     else
  14.     {
  15.         cout<<"不及格"<<endl;
  16.     }           
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

返回列表