標題:
產生介於指定範圍內的隨機亂數 (五)
[打印本頁]
作者:
鄭繼威
時間:
2023-6-2 17:44
標題:
產生介於指定範圍內的隨機亂數 (五)
本帖最後由 鄭繼威 於 2024-2-5 20:48 編輯
產生20組數值,每組皆包含4個介於0~9之隨機亂數,每隔 0.5秒 產生一組。
_sleep(N)可讓程式暫停執行N毫秒
本帖隱藏的內容需要回復才可以瀏覽
作者:
蔡沛倢
時間:
2023-6-2 20:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[4];
srand(time(NULL));
for(int i=0;i<=20;i++)
{
for(int j=0;j<=3;j++)
{
a[j]=rand()%10;
cout<<a[j];
}
cout<<endl;
_sleep(500);
}
system("pause");
return 0;
}
複製代碼
作者:
盧玄皓
時間:
2023-6-2 20:22
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
int n[4];
for(int i=1;i<=20;i++)
{
for(int j=0;j<=3;j++)
{
n[j]=rand()%10;
cout<<n[j]<<" ";
}
cout<<endl;
_sleep(500); }
system("pause");
return 0;
}
複製代碼
作者:
呂宗晉
時間:
2023-6-2 20:22
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
int n[4];
for(int i=1;i<=20;i++)
{
for(int j=0;j<=3;j++)
{
n[j]=rand()%10;
cout<<n[j]<<" ";
}
cout<<endl;
_sleep(500);
}
system("pause");
return 0;
}
複製代碼
作者:
呂得銓
時間:
2023-6-2 20:22
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
int n[4];
for(int i=1;i<=20;i++)
{
for(int j=0;j<=3;j++)
{
n[j]=rand()%10;
cout<<n[j]<<" ";
}
cout<<endl;
_sleep(500);
}
system("pause");
return 0;
}
複製代碼
作者:
張絜晰
時間:
2023-6-2 20:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[0];
srand(time(NULL));
for(int i=0;i<=20;i++)
{
for(int j=0;j<=3;j++)
{
a[j]=rand()%10;
cout<<a[j]<<" ";
}
cout<<endl;
_sleep(500);
}
system("pause");
return 0;
}
複製代碼
作者:
黃子豪
時間:
2023-6-2 20:25
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
int n[4];
for(int i=0; i<=19; i++){
for(int j=0; j<=3; j++){
n[j]=rand()%10;
cout<<n[j]<<" ";
}
cout<<endl;
_sleep(500);
}
system("pause");
return 0;
}
複製代碼
作者:
廖秝瑜
時間:
2023-6-2 20:26
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
int n[4];
for(int i=1; i<=20; i++)
{
for(int j=0; j<=3; j++)
{
n[j]=rand()%10;
cout<<n[j]<<" ";
}
cout<<endl;
_sleep(1000);
}
system("pause");
return 0;
}
複製代碼
作者:
何權晉
時間:
2023-6-2 20:27
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
srand(time(NULL));
int n[4];
for(int i=1;i<=20;i++)
{
for(int j=0;j<=3;j++)
{
n[j]=rand()%10;
cout<<n[j]<<" ";
}
cout<<endl;
_sleep(500);
}
system("pause");
return 0;
複製代碼
作者:
黃品禎
時間:
2023-6-21 19:01
本帖最後由 黃品禎 於 2023-6-21 19:03 編輯
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{ int n[4];
srand(time(NULL));
for (int i=1;i<=20;i++)
{
for(int j=0;j<=3;j++)
{
n[j]=rand()%10;
cout<< n[j]<<" ";
}
cout<<endl;
_sleep(500);
}
system ("pause");
return 0;
}
複製代碼
作者:
吳柏潁
時間:
2023-7-24 17:14
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
//產生20組數值,每組皆包含4個介於0~9之隨機亂數,每隔 0.5秒 產生一組。_sleep(N)可讓程式暫停執行N毫秒
srand(time(NULL));
for(int i=1; i<=20; i++){
for(int j=1; j<=4; j++){
cout<<rand()%10<<" ";
}
cout<<endl;
_sleep(500);
}
system("pause");
return 0;
}
複製代碼
作者:
吳柏潁
時間:
2023-7-24 17:23
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
//產生20組數值,每組皆包含4個介於0~9之隨機亂數,每隔 0.5秒 產生一組。_sleep(N)可讓程式暫停執行N毫秒
srand(time(NULL));
int n[4];
for(int i=1; i<=20; i++){
for(int j=1; j<=4; j++){
n[j-1]=rand()%10;
}
for(int k=0;k<=3;k++){
cout<<n[k]<<" ";
}
cout<<endl;
_sleep(500);
}
system("pause");
return 0;
}
複製代碼
作者:
邱品惟
時間:
2023-8-8 19:33
#include<iostream>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
{
for(int j=1;j<=4;j++)
{
cout<<rand()%10<<" ";
}
cout<<endl;
_sleep(500);
}
system("pause");
return 0;
}
複製代碼
作者:
朱奕祈
時間:
2024-2-5 20:51
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=50; i++)
cout<<rand()%9+19<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2