標題:
[作業1] 產生介於指定範圍內的隨機亂數 (四)
[打印本頁]
作者:
方浩葦
時間:
2024-7-19 20:58
標題:
[作業1] 產生介於指定範圍內的隨機亂數 (四)
試產生50組範圍介於 -7~7 之間的隨機亂數。
本帖隱藏的內容需要回復才可以瀏覽
作者:
劉奕劭
時間:
2024-7-20 15:40
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=50; i++)
cout<<rand()%15-7<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪榮辰
時間:
2024-7-20 15:53
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=50; i++)
cout<<rand()%15-7<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林少謙
時間:
2024-7-20 16:14
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=50; i++)
{
cout<<rand()%15-7<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳妍蓁
時間:
2024-7-20 16:17
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
srand(time(NULL));
for(int i=1;i<=50;i++)
cout<<rand()%15+(-7)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李唯銘
時間:
2024-7-27 14:51
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=50; i++)
cout<<rand()%12-7<<endl;
cout<<endl;
system("pause");
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2