Board logo

標題: 2024/01/20 課堂重點(頤寬) [打印本頁]

作者: 陳育霖    時間: 2024-1-20 09:28     標題: 2024/01/20 課堂重點(頤寬)

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

今日上課重點:
亂數 - 固定亂數
亂數 - 種子亂數
亂數 - 隨機亂數
抽籤程式(一)
產生介於指定範圍內的隨機亂數 (一)
產生介於指定範圍內的隨機亂數 (二)
產生介於指定範圍內的隨機亂數 (三)
產生介於指定範圍內的隨機亂數 (四)

今日作業:
打字練習 3 次
while 迴圈 (四) - 九九乘法表
計算333~999間所有3的倍數總和
產生介於指定範圍內的隨機亂數 (-1.5 ~ 4.5)

今日考試:
打字前測
購物系統 (五)
卷七 ( if 與 switch 判斷)

下次考試:
time(NULL) 函式
卷八

作者: 陳頤寬    時間: 2024-1-20 13:32

16 WPM
(words per minute)
Keystrokes        (82 | 0) 82
Accuracy        95.35%
Correct words        15
Wrong words        0
作者: 陳頤寬    時間: 2024-1-27 09:44

17 WPM
(words per minute)
Keystrokes        (86 | 0) 86
Accuracy        98.85%
Correct words        17
Wrong words        0
作者: 陳頤寬    時間: 2024-1-27 09:46

18 WPM
(words per minute)
Keystrokes        (88 | 0) 88
Accuracy        96.67%
Correct words        19
Wrong words        0
作者: 陳頤寬    時間: 2024-1-27 09:48

17 WPM
(words per minute)
Keystrokes        (76 | 0) 76
Accuracy        95%
Correct words        18
Wrong words        0
作者: 陳頤寬    時間: 2024-1-27 09:49

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a=0, b=1;
  7.     while(a<9)
  8.     {
  9.         a++;
  10.         while(b<10)
  11.         {
  12.             cout<<a<<"*"<<b<<"="<<a*b<<"\t";
  13.             b++;  
  14.         }      
  15.         b=1;
  16.         cout<<endl;
  17.     }
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

作者: 陳頤寬    時間: 2024-1-27 09:50

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int sum = 0;
  7.     for(int i = 333;i < 1000;i+=3)
  8.     {
  9.         sum += i;
  10.     }
  11.     cout <<"333~999間所有3的倍數總和為: "<< sum << endl;
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

作者: 陳頤寬    時間: 2024-1-27 09:59

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     for (int i = 0; i < 20; i++)
  8.     {
  9.         cout<< rand() % 7 - 1.5 <<endl;
  10.     }
  11. }
複製代碼





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