標題:
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
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=0, b=1;
while(a<9)
{
a++;
while(b<10)
{
cout<<a<<"*"<<b<<"="<<a*b<<"\t";
b++;
}
b=1;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳頤寬
時間:
2024-1-27 09:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum = 0;
for(int i = 333;i < 1000;i+=3)
{
sum += i;
}
cout <<"333~999間所有3的倍數總和為: "<< sum << endl;
system("pause");
return 0;
}
複製代碼
作者:
陳頤寬
時間:
2024-1-27 09:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
for (int i = 0; i < 20; i++)
{
cout<< rand() % 7 - 1.5 <<endl;
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2