Board logo

標題: if...else 判斷式 [打印本頁]

作者: 王瑞喻    時間: 2020-7-16 16:20     標題: if...else 判斷式


[attach]8969[/attach]
  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. }
複製代碼

作者: 蔡懷樂    時間: 2020-7-16 19:22

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

作者: 楊名嘉    時間: 2020-7-17 09:48

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

作者: 王若安    時間: 2020-7-17 09:50

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

作者: 林威彤2    時間: 2020-7-17 09:52

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

作者: 陳昱宏    時間: 2020-7-17 09:54

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

作者: 張琍晴    時間: 2020-7-17 09:57

  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>=60)
  10.     {
  11.          cout<<"及格了,吃奧力給"<<endl;
  12.     }else
  13.     {
  14.          cout<<"不及格,吃奧力給"<<endl;
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 鄭鈞澤    時間: 2020-7-17 10:00

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

作者: 林望    時間: 2020-7-17 10:01

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

作者: 林秉叡    時間: 2020-7-17 10:04

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





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2