返回列表 發帖

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

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a=0;
  7.     int b=0;
  8.    
  9.     cout<<"請輸入a"<<endl;
  10.     cin>>a;
  11.     cout<<"請輸入b"<<endl;
  12.     cin>>b;
  13.     if(a>b)
  14.     {
  15.     cout<<"a>b"<<endl;
  16.     }
  17.     else if(a<b)
  18.     {
  19.     cout<<"a<b"<<endl;
  20.     }
  21.     else
  22.     {
  23.     cout<<"a=b"<<endl;
  24.     }

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

TOP

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

TOP

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

TOP

sing namespace std;
int main()
{
    int score=60;
    if(score>=60)
    {cout<<"及格了"<< e
}
else
{
    eout<<"不及格"<<
}
    system("pause");
    return 0;
}

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score=60;
  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 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

  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.      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<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 <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 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<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 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 ;
    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 =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

  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

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

返回列表