標題:
2023/07/27 課堂重點(柏潁)
[打印本頁]
作者:
鄭繼威
時間:
2023-7-27 15:53
標題:
2023/07/27 課堂重點(柏潁)
本帖最後由 鄭繼威 於 2023-8-2 15:07 編輯
2023/07/27 課程重點
上次上課
[遠距上課準備]
Anydesk
鏡頭
麥克風
會議連結 - 繼威老師
備用會議連結 - 繼威老師
[複習]
亂數 - 隨機亂數
產生介於指定範圍內的隨機亂數 (一)
產生介於指定範圍內的隨機亂數 (五)
[上課]
產生介於指定範圍內的隨機亂數 (六)-不重複
產生介於指定範圍內的隨機亂數 (七)-樂透
猜拳遊戲 (一)
本帖隱藏的內容需要回復才可以瀏覽
[作業]
每一次上完課都要複習之前的哦!
作者:
鄭繼威
時間:
2023-7-27 18:01
本帖最後由 鄭繼威 於 2023-7-27 18:22 編輯
連續2行一樣=>機率很低
[attach]16114[/attach]
連續2行一樣+4數一樣+>機率極低
[attach]16113[/attach]
#include<iostream>
#include<cstdlib>
#include<ctime>
#include<algorithm>
#include <iterator>
using namespace std;
int main(){
srand(time(NULL));
int n[4],temp[4];
int counter=0,chk;
for(;;)
{
counter++;
//搞定陣列
for(int j=0;j<=3;j++)
{
n[j]=rand()%10;
cout<<n[j]<<" ";
}
cout<<endl;
//檢查2個陣列是否一樣
chk=0;
for(int i=0;i<=3;i++)
{
if(temp[i]==n[i])
{
chk++;
}
}
//將n陣列複製到temp陣列
copy(n,n+4,temp);
//檢查陣列裡的4個數字是否一樣
if(chk==4 and (n[0]==n[1] and n[1]==n[2] and n[2]==n[3]))
{
cout<<"\n執行"<<counter<<"次\n"<<endl;
printf("機率:%.3f",1/counter);
break;
}
}
system("pause");
return 0;
}
複製代碼
作者:
吳柏潁
時間:
2023-8-7 19:55
太久了吧
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2