標題:
[隨堂測驗] 產生介於指定範圍內的隨機亂數 (三)
[打印本頁]
作者:
may
時間:
2023-2-4 09:20
標題:
[隨堂測驗] 產生介於指定範圍內的隨機亂數 (三)
試產生50組範圍介於19~27之間的隨機亂數。
作者:
盧禹丞
時間:
2023-2-4 15:03
本帖最後由 盧禹丞 於 2023-2-4 15:12 編輯
#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;
}
複製代碼
作者:
羅紹齊
時間:
2023-2-4 15:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
srand(time(NULL));
for(int i=1; i<=50; i++)
cout<<rand()%9+19<<endl;
system("pause");
return 0;
}
複製代碼
作者:
徐啟祐
時間:
2023-2-4 15:04
本帖最後由 徐啟祐 於 2023-2-4 15:05 編輯
#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;
}
複製代碼
作者:
陳泓亦
時間:
2023-2-4 15:04
#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;
}
複製代碼
作者:
葉佳和
時間:
2023-2-4 15:04
#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;
}
複製代碼
作者:
陳牧謙
時間:
2023-2-4 15:05
#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;
}
複製代碼
作者:
羅暐傑
時間:
2023-2-4 15:06
#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;
}
複製代碼
作者:
楊芊琦
時間:
2023-2-4 15:06
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int e=1;e<=5;e++)
{
for(int i=1;i<=20;i++)
cout<<rand()%9+19<<" ";
}
system("pause");
return 0;
}
複製代碼
作者:
吳俊頡
時間:
2023-2-4 18:59
#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;
}
複製代碼
作者:
陳宥霖
時間:
2023-2-9 21:07
#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;
}
複製代碼
作者:
翁川祐
時間:
2023-2-10 10:50
#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;
}
複製代碼
作者:
宜儒
時間:
2023-2-22 21:21
#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://istak.org.tw/seed/)
Powered by Discuz! 7.2