返回列表 發帖

2024/01/13 課堂重點

本帖最後由 陳育霖 於 2024-1-13 20:55 編輯

今日重點:
複習因數分解 (四) - 求公因數
三數求公因數
兩數對調
[挑戰題1]我是電視迷_b877

作業:
[訂正]因數分解 (五) - 求最大公因數
switch 判斷式 (二)
while 迴圈 (二)
打字練習網 完成英文字母 A列第七關到第九關

今日考試:
因數分解 (五) - 求最大公因數
卷四 (if...else if...else)

下次考試:
卷五 (if...else if...else)
卷六 (if...else if...else & switch)

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int n;
  8.     cout<<"請輸入您的成績: ";
  9.     cin>>n;
  10.     switch(n)
  11.     {
  12.         case 90 ... 100:
  13.             cout<<"U等"<<endl;
  14.             break;
  15.         case 80 ... 89:
  16.             cout<<"甲等"<<endl;
  17.             break;
  18.         case 70 ... 79:
  19.             cout<<"乙等"<<endl;
  20.             break;
  21.         case 60 ... 69:
  22.             cout<<"丙等"<<endl;
  23.         case 0 ... 59:
  24.             cout<<"可悲阿"<<endl;
  25.             break;         
  26.         default:
  27.             cout<<"你在幹嘛麼,打字都不會!!!"<<endl;
  28.     }
  29.     goto re;
  30.     system("pause");
  31.     return 0;
  32. }
複製代碼
༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int n;
  8.     cout<<"請輸入您的成績: ";
  9.     cin>>n;
  10.     switch(n)
  11.     {
  12.         case 90 ... 100:
  13.             cout<<"U等"<<endl;
  14.             break;
  15.         case 80 ... 89:
  16.             cout<<"甲等"<<endl;
  17.             break;
  18.         case 70 ... 79:
  19.             cout<<"乙等"<<endl;
  20.             break;
  21.         case 60 ... 69:
  22.             cout<<"丙等"<<endl;
  23.         case 0 ... 59:
  24.             cout<<"可悲阿"<<endl;
  25.             break;         
  26.         default:
  27.             cout<<"你在幹嘛麼,打字都不會!!!"<<endl;
  28.     }
  29.     goto re;
  30.     system("pause");
  31.     return 0;
  32. }
複製代碼
༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ༼ つ ◕_◕ ༽つ

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int x;
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>x;
  10.     switch(x)
  11.     {
  12.     case 90 ... 100:
  13.         cout<<"優"<<endl;
  14.         break;
  15.     case 80 ... 89:
  16.         cout<<"甲"<<endl;
  17.         break;
  18.     case 70 ... 79:
  19.         cout<<"乙"<<endl;
  20.         break;
  21.     case 60 ... 69:
  22.         cout<<"丙"<<endl;
  23.         break;
  24.     case 0 ... 59:
  25.         cout<<"不及格"<<endl;
  26.         break;  
  27.     default:
  28.         cout<<"輸入錯誤"<<endl;
  29.     }
  30.     goto re;
  31.     system ("pause");   
  32.     return 0;
  33. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     re:
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>a;
  10.     switch(a)
  11.     {
  12.     case 90 ... 100:
  13.     cout<<"優"<<endl;
  14.     break;
  15.     case 80 ...89:
  16.     cout<<"甲"<<endl;
  17.     break;
  18.     case 70 ...79:
  19.     cout<<"乙"<<endl;
  20.     break;
  21.     case 60 ...69:
  22.     cout<<"丙"<<endl;
  23.     break;
  24.     case 0 ...59:
  25.     cout<<"不及格"<<endl;
  26.     break;
  27.     default:
  28.     cout<<"錯誤 "<<endl;
  29.     }
  30.     goto re;
  31.     system("pause");
  32.     return 0;
  33. }
複製代碼

TOP

  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a=0;
  7.     while(a<101)
  8.     {
  9.     cout<<a<<endl;         
  10.     a+=3;
  11.     }
  12.     system ("pause");
  13.     return 0;
  14. }
複製代碼

TOP

返回列表