標題:
亂數 - 產生介於指定範圍內的隨機亂數 (二)
[打印本頁]
作者:
tonyh
時間:
2014-3-8 17:07
標題:
亂數 - 產生介於指定範圍內的隨機亂數 (二)
本帖最後由 tonyh 於 2014-3-8 17:21 編輯
產生15組 範圍介於725~1088的隨機亂數
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=15; i++)
cout<<rand()%364+725<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2014-3-8 17:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1;i<=15;i++)
cout<<rand()%364+725<<endl;
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2014-3-8 17:09
本帖最後由 施伯叡 於 2014-3-8 17:12 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=15; i++)
cout<<rand()%364+725<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2014-3-8 17:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=15; i++)
cout<<rand()%364+725<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2014-3-8 17:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
cout<<rand()%364+725<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2014-3-8 17:15
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=15; i++)
cout<<rand()%364+725<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2014-3-8 17:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=15;i++)
cout<<rand()%364+725<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2014-3-8 17:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1;i<=15;i++)
cout<<rand()%364+765<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2