返回列表 發帖

if...else 判斷式

  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score = 59;
  7.     if(score >=60) //if 判斷式
  8.     {
  9.       cout << "及格了" << endl;         
  10.     }
  11.     else
  12.     {
  13.       cout << "不及格! 下次再努力!" << endl;   
  14.     }
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

#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

回復 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

  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>
  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<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

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
  

  int score=60;
  if( score>=60)
{  
    cout<<"及格了"<<endl;
}
else
{   cout<<"不及格"<<endl;
}     

system("pause");
return 0;
cout<<"hello"<<endl;
}

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

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
  int score=50;
  if (score<40)
  
{  
cout<<"yes"<<endl;
}
  else
{
cout<<"no"<<endl;
}
  cout<<""<<endl;
  system("pause");
  return 0;   
}

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.       
  17.     }  
  18.       
  19.       
  20.       
  21.       
  22. #include<iostream>
  23. #include<cstdlib>
  24. using  namespace std;
  25.    int main()
  26.    {

  27.    int score = 59;
  28.     if(score >=60)
  29.     {
  30.       cout << "及格了" << endl;         
  31.     }
  32.     else
  33.     {
  34.       cout << "不及格! 下次再努力!" << endl;   
  35.     }
  36.     system("pause");
  37.       
  38.     }  
  39.       
  40.       
  41.      #include<iostream>
  42. #include<cstdlib>
  43. using  namespace std;
  44.    int main()
  45.    {

  46.    int score = 59;
  47.     if(score >=60)
  48.     {
  49.       cout << "及格了" << endl;         
  50.     }
  51.     else
  52.     {
  53.       cout << "不及格! 下次再努力!" << endl;   
  54.     }
  55.     system("pause");
  56.       
  57.     }  
  58.       
  59.       
  60.       
  61.       

  62.       
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score =0;
  7.      cin >> score;
  8.     if(score>=60)
  9.     {
  10.      cout<<"啊不就好棒棒"<<endl;            
  11.     }
  12.     else
  13.     {
  14.      cout<<"就說你不行,你都不聽"<<endl;   
  15.     }
  16.    
  17.    
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int score=99;
  7.   if(score>=70)

  8. {
  9.   cout<<"OK"<<endl;
  10. }
  11.   else  
  12. {
  13.   cout<<"不OK加油"<<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 x=0;
  7.     cout<<"請輸入分數";
  8.     cin>>x;
  9.     if(x>=60)
  10.     {
  11.     cout<<"恭喜你,及格了"<<"\r\n";
  12.     }
  13.     else
  14.     {
  15.     cout<<"不及格,下次再加油"<<"\r\n";
  16.     }
  17.     system("pause");
  18.     return 0;
  19. };
複製代碼

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>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score=60;
  7.     if(score >=70)
  8. {
  9.   
  10.   cout << "及格" << endl;      
  11. }         
  12. else
  13. {
  14.          
  15.    cout << "不及格"  <<endl;
  16.          
  17.          
  18. }        
  19.   system("pause");
  20.     return 0;
  21. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      cout<<"請輸入成績"<<endl;
  7.      int score=0;
  8.      cin>>score;
  9.      if(score>=60)
  10.      {
  11.      cout<<"你很棒"<<endl;
  12.      }
  13.      else if(score<60)
  14.      {
  15.      cout<<"再加油"<<endl;
  16.      }
  17.      
  18.      
  19.      
  20.      
  21.               
  22.      system("pause");   
  23.      return 0;
  24. }
複製代碼

TOP

  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score = 59;
  7.     if(score >=60) //if 判斷式
  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 x=23,y=7;
  7. cout<<"請輸入x的值";
  8. cout<<"請輸入y的值";
  9. cin>>y;
  10. cin>>x;
  11. //int x;
  12. //int Y;
  13. cout<<x+y<<"\r\n";
  14. cout<<x-y<<"\r\n";
  15. cout<<x*y<<"\r\n";
  16. cout<<x/y<<"\r\n";
  17. cout<<x%y<<"\r\n";
  18. system("pause");
  19.   return 0;
  20. }   
複製代碼

TOP

返回列表