標題:
[隨堂測驗] 產生介於指定範圍內的隨機亂數 (五)
[打印本頁]
作者:
方浩葦
時間:
2024-7-27 11:17
標題:
[隨堂測驗] 產生介於指定範圍內的隨機亂數 (五)
產生20組數值,每組皆包含4個介於0~9之隨機亂數,每隔 0.5秒 產生一組。
本帖隱藏的內容需要回復才可以瀏覽
作者:
李唯銘
時間:
2024-8-3 14:49
#include<iostream>
#include<cstdlib>
#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-8-3 14:51
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"4個介於0~9的數"<<endl;
for(int i=1; i<=20; i++)
{
int a[]{0,0,0,0};
for(int j=0; j<=3; j++)
{
a[j]=rand()%10;
}
cout<<a[0]<<" "<<a[1]<<" "<<a[2]<<" "<<a[3]<<endl;
_sleep(500);
}
system("pause");
return 0;
}
複製代碼
作者:
劉奕劭
時間:
2024-8-3 15:24
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a[]{0,0,0,0};
for(int i=1; i<=20; i++)
{
for(int j=0; j<=3; j++)
{
a[j]=rand()%10;
}
cout<<a[0]<<" "<<a[1]<<" "<<a[2]<<" "<<a[3]<<endl;
_sleep(50);
}
system("pause");
return 0;
}
複製代碼
作者:
陳妍蓁
時間:
2024-8-3 15:44
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
srand(time(NULL));
cout<<"4個介於0~9之隨機亂數:"<<endl;
for(int i=1;i<=20;i++){
for(int i=1;i<=4;i++){
cout<<rand()%10<<" ";
}
cout<<endl;
_sleep(500);
}
system("pause");
return 0;
}
複製代碼
作者:
洪榮辰
時間:
2024-8-3 16:01
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
cout<<"4個介於0~9的隨機亂數:"<<endl;
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-8-17 14:01
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a[]{0,0,0,0};
for(int i=1; i<=20; i++)
{
for(int j=0; j<=3; j++)
{
a[j]=rand()%10;
}
cout<<a[0]<<" "<<a[1]<<" "<<a[2]<<" "<<a[3]<<endl;
_sleep(50);
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2