返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int score=61;
  7.    if (score>=60)
  8.    {
  9.    cout<<"及格了"<<endl;
  10.    }   
  11.    else
  12.    {
  13.     cout<<"沒有及格!再繼續努力!"<<endl;
  14.    }
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

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

  5. {
  6.       int score = 59;
  7.     if(score >=60)  
  8.     {
  9.       cout << "及格了" << endl;         
  10.     }
  11.     else
  12.     {
  13.       cout << "不及格! 下次再努力!" << endl;
  14.       }
  15. system("pause");      
  16.   return 0;
  17. }
  18.    
  19.    
  20.    
  21.    
  22.    
  23.    
  24.    
  25.    
  26.    
  27.    
  28.    
  29.    
  30.    
複製代碼

TOP

  1. #include <cstdlib>
  2. #include <iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score=59;
  7.     if (score>=60)
  8.     {
  9.       cout<<"恭喜及格了"<<endl;            
  10. }
  11.       else
  12.       {
  13.       cout<<"不及格!"<<endl;
  14. }

  15.    system("pause");
  16.    return 0;  
  17. }
複製代碼

TOP

回復 1# 周政輝


    #include <iostream>
#include<cstdlib>
using namespace std;
int main()
{
    cout<<"請輸入成績"<<endl;
    int x=0;
    cin>>x;
    if (x>=60)
    {cout<<"你是學霸"<<endl;
}
    else if(x<60)
    {cout<<"你是學渣" <<endl;
}
    system ("pause");
    return 0;  
}

TOP

#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
    int score = 100;
    if(score >=60)
    {
      cout << "及格了" << endl;         
    }
    else
    {
      cout << "不及格! 下次再努力!" << endl;   
    }
    system("pause");
    return 0;
}

TOP

返回列表