標題:
[隨堂測驗] 產生介於指定範圍內的隨機亂數 (五)
[打印本頁]
作者:
鄭繼威
時間:
2022-4-15 19:09
標題:
[隨堂測驗] 產生介於指定範圍內的隨機亂數 (五)
本帖最後由 鄭繼威 於 2022-4-16 10:59 編輯
前情提要:
[作業] 產生介於指定範圍內的隨機亂數 (四)
產生20組數值,每組皆包含4個介於0~9之隨機亂數,每隔 0.5秒 產生一組。
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
cout<<"4個介於0~9的隨機亂數:"<<endl;
int n[4]; //一組4個數
int j=1; //組數
srand(time(NULL));//設定以隨機亂數來產生亂數
//巢狀迴圈
while(j<=20){ //最外面的20次迴圈->決定第?組
for(int i=0; i<4; i++){ // 跑4次的迴圈->每1組裡面有4個數字
n[i]=rand()%10; //0~9 //隨機數放入陣列裡
cout<<n[i]<<" "; //輸出隨機數+空格
}
cout<<endl;
_sleep(500); //跑產生1組數後就休息500毫秒
j++;
}
system("pause");
return 0;
}
複製代碼
作者:
曾善勤
時間:
2022-4-16 10:55
本帖最後由 曾善勤 於 2022-4-16 11:02 編輯
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"4個介於0~9的隨機亂數:"<<endl;
srand(time(NULL));
int n[4];
int j=1;
while(j<=20)
{
for(int i=0; i<4; i++)
{
n[i]=rand()%10; //0~9
cout<<n[i]<<" ";
}
cout<<endl;
_sleep(500);
j++;
}
system("pause");
return 0;
}
複製代碼
作者:
柳侑辰
時間:
2022-4-16 10:55
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"4個介於0~9的隨機亂數:"<<endl;
srand(time(NULL));
int n[4];
int j=1;
while(j<=20)
{
for(int i=0; i<4; i++)
{
n[i]=rand()%10;
cout<<n[i]<<" ";
}
cout<<endl;
_sleep(500);
j++;
}
system("pause");
return 0;
}
複製代碼
作者:
徐譽豈
時間:
2022-4-16 10:57
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"4個介於0~9的隨機亂數:"<<endl;
srand(time(NULL));
int n[4];
int j=1;
while(j<=20)
{
for(int i=0; i<4; i++)
{
n[i]=rand()%10;
cout<<n[i]<<" ";
}
cout<<endl;
_sleep(500);
j++;
}
system("pause");
return 0;
}
複製代碼
作者:
孫子傑
時間:
2022-4-16 11:01
#include<cstdlib>
#include<iostream>
#include<ctime>
using namespace std;
int main()
{
cout<<"4個介於0~9的隨機亂數:"<<endl;
srand(time(NULL));
int n[4];
int j=1;
while (j=20)
{
for(int i=0; i<4;i++)
{
n[i]=rand()%10;
cout<<n[i]<<" ";
}
cout<<endl;
_sleep(500);
j++;
}
system("pause");
return 0;
}
複製代碼
作者:
郭博鈞
時間:
2022-4-16 11:01
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"4個介於0~9的隨機亂數:"<<endl;
srand(time(NULL));
int n[4];
int j=1;
while(j<=20)
{
for(int i=0;i<4;i++)
{
n[i]=rand()%10;
cout<<n[i]<<" ";
}
cout<<endl;
_sleep(500);
j++;
}
system("pause");
return 0;
}
複製代碼
作者:
鍾易澄
時間:
2022-4-16 11:01
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"4個介於0~9的隨機亂數:"<<endl;
srand(time(NULL));
int n[4];
int j=1;
while(j<=20)
{
for(int i=0; i<4; i++)
{
n[i]=rand()%10;
cout<<n[i]<<" ";
}
cout<<endl;
_sleep(500);
j++;
}
system("pause");
return 0;
}
複製代碼
作者:
許宸瑀
時間:
2022-4-16 11:01
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"4個介於0~9的隨機亂數:"<<endl;
srand(time(NULL));
int n[4];
int j=1;
while(j<=20)
{
for(int i=0; i<4; i++)
{
n[i]=rand()%10;
cout<<n[i]<<" ";
}
cout<<endl;
_sleep(500);
j++;
}
system("pause");
return 0;
}
複製代碼
作者:
高鋐鈞
時間:
2022-4-16 11:02
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"4個介於0~9的隨機亂數:"<<endl;
srand(time(NULL));
int n[4];
int j=1;
while(j<=20)
{
for(int i=0; i<4; i++)
{
n[i]=rand()%10;
cout<<n[i]<<" ";
}
cout<<endl;
_sleep(500);
j++;
}
system("pause");
return 0;
}
複製代碼
作者:
田家齊
時間:
2022-4-16 11:09
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"4個介於0~9的隨機亂數:"<<endl;
srand(time(NULL));
int n[4];
int j=1;
while(j<=20)
{
for(int i=0; i<4; i++)
{
n[i]=rand()%10;
cout<<n[i]<<" ";
}
cout<<endl;
_sleep(500);
j++;
}
system("pause");
return 0;
}
複製代碼
作者:
林鴻慶
時間:
2022-4-16 11:25
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
cout<<"4個介於0~9的隨機亂數:"<<endl;
int n[4]; //一組4個數
int j=1; //組數
srand(time(NULL));//設定以隨機亂數來產生亂數
//巢狀迴圈
while(j<=20){ //最外面的20次迴圈->決定第?組
for(int i=0; i<4; i++){ // 跑4次的迴圈->每1組裡面有4個數字
n[i]=rand()%10; //0~9 //隨機數放入陣列裡
cout<<n[i]<<" "; //輸出隨機數+空格
}
cout<<endl;
_sleep(500); //跑產生1組數後就休息500毫秒
j++;
}
system("pause");
return 0;
}
複製代碼
作者:
許馹東
時間:
2022-4-16 11:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"4個介於0~9的隨機亂數:"<<endl;
srand(time(NULL));
int n[4];
int j=1;
while(j<=20)
{
for(int i=0; i<4; i++)
{
n[i]=rand()%10;
cout<<n[i]<<" ";
}
cout<<endl;
_sleep(500);
j++;
}
system("pause");
return 0;
}
複製代碼
作者:
高昀昊
時間:
2022-4-16 14:57
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"4個介於0~9的隨機亂數:"<<endl;
int n[4];
int j=1;
srand(time(NULL));
while(j<=20){
for(int i=0; i<4; i++)
{
n[i]=rand()%10;
cout<<n[i]<<" ";
}
cout<<endl;
_sleep(500);
j++;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2