標題:
產生介於指定範圍內的隨機亂數 (二)
[打印本頁]
作者:
王瑞喻
時間:
2021-1-8 15:53
標題:
產生介於指定範圍內的隨機亂數 (二)
試產生20組範圍介於4~7的隨機亂數。
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
cout<<rand()%4+4<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡旭恩
時間:
2021-1-9 20:03
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
cout<<rand()%4+4<<endl;
system("pause");
return 0;
}
複製代碼
作者:
柏霖
時間:
2021-1-9 20:03
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1;i<=20;i++)
{
cout<<rand()%4+4<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
文硯
時間:
2021-1-9 20:03
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
cout<<rand()%4+4<<endl;
system("pause");
return 0;
}
複製代碼
作者:
顏宇鋒
時間:
2021-1-9 20:03
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
cout<<rand()%4+4<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃韋誌
時間:
2021-1-9 20:03
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
cout<<rand()%4+4<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林土水
時間:
2021-1-9 20:04
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
cout<<rand()%4+4<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張博竣
時間:
2021-1-9 20:04
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
cout<<rand()%4+4<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張博翔
時間:
2021-1-9 20:04
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
cout<<rand()%3+3<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡坤辰
時間:
2021-1-9 20:05
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
cout<<rand()%4+4<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾元瑜
時間:
2021-1-9 20:05
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
cout<<rand()%4+4<<endl;
system("pause");
return 0;
}
/*
4~7 通通減4
0~3 在加4
*/
複製代碼
作者:
吳湘儀
時間:
2021-1-9 20:05
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
cout<<rand()%4+4<<endl;
system("pause");
return 0;
}
複製代碼
作者:
趙品昀
時間:
2021-1-9 20:08
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
cout<<rand()%4+4<<endl;
system("pause");
return 0;
}
複製代碼
作者:
文硯
時間:
2021-3-27 20:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"4個介於0~9的隨機亂數:"<<endl;
srand(time(NULL));
int n[4];
for(int i=1; i<=20; i++)
{
for(int j=1; j<=4; j++)
{
n[j]=rand()%10;
cout<<n[j]<<" ";
}
cout<<endl;
_sleep(500);
}
system("pause");
return 0;
}
複製代碼
作者:
朱嚴寘
時間:
2021-4-28 20:47
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
cout<<rand()%4+4<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪勻蓁
時間:
2021-5-17 19:36
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1;i<=20;i++)
cout<<rand()%(7-4+1)+4<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2