標題:
產生介於指定範圍內的隨機亂數 (七)-樂透
[打印本頁]
作者:
鄭繼威
時間:
2023-2-25 14:30
標題:
產生介於指定範圍內的隨機亂數 (七)-樂透
本帖最後由 鄭繼威 於 2023-7-27 16:50 編輯
4個數字一樣
[attach]15196[/attach]
都一樣的
本帖隱藏的內容需要回復才可以瀏覽
作者:
吳柏潁
時間:
2023-7-27 17:13
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
//產生20組數值,每組皆包含4個介於0~9之隨機亂數,每隔 0.5秒 產生一組。_sleep(N)可讓程式暫停執行N毫秒
int t=0;
srand(time(NULL));
int n[4];
for(;;){
for(int j=1; j<=4; j++){
n[j-1]=rand()%10;
}
t++;
for(int k=0;k<=3;k++){
cout<<n[k]<<" ";
}
if(n[0]==n[1] and n[1]==n[2] and n[2]==n[3]){
cout<<"第"<<t<<"次"<<endl;
goto w;
}
cout<<endl;
}
w:
system("pause");
return 0;
}
複製代碼
作者:
吳柏潁
時間:
2023-7-27 17:15
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
//產生20組數值,每組皆包含4個介於0~9之隨機亂數,每隔 0.5秒 產生一組。_sleep(N)可讓程式暫停執行N毫秒
int t=0;
srand(time(NULL));
int n[4];
for(;;){
for(int j=1; j<=4; j++){
n[j-1]=rand()%10;
}
t++;
for(int k=0;k<=3;k++){
cout<<n[k]<<" ";
}
if(n[0]==1 and n[1]==2 and n[2]==3 and n[3]==4){
cout<<"第"<<t<<"次"<<endl;
goto w;
}
cout<<endl;
}
w:
system("pause");
return 0;
}
複製代碼
作者:
邱品惟
時間:
2023-8-8 20:18
#include<iostream>
#include<ctime>
using namespace std;
int main()
{
int n[4];
int t=0;
srand(time(NULL));
re:
t++;
for(int j=0;j<=3;j++)
{
n[j]=rand()%10;
cout<<n[j]<<" ";
}
if(n[0]==n[1]&&n[2]==n[1]&&n[2]==n[3])
{
cout<<"總共執行了"<<t<<"次"<<endl;
}
else
{
cout<<endl;
goto re;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2