標題:
亂數 - 產生介於指定範圍內的隨機亂數
[打印本頁]
作者:
tonyh
時間:
2011-12-24 17:01
標題:
亂數 - 產生介於指定範圍內的隨機亂數
本帖最後由 tonyh 於 2011-12-24 17:05 編輯
產生5個介於1~100間的隨機亂數.
本帖隱藏的內容需要回復才可以瀏覽
作者:
t3742238
時間:
2011-12-24 17:01
本帖最後由 t3742238 於 2011-12-24 17:03 編輯
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"產生1~100間的的隨機亂數"<<endl;
srand(time(NULL));
for(int i=1; i<=10;i++)
{
cout<<rand()%100+1<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t2364705
時間:
2011-12-24 17:02
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"產生5個1~100間的隨機亂數: "<<endl;
srand(time(NULL));
for(int i=1; i<=5; i++)
{
cout<<rand()%100+1<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t8155745
時間:
2011-12-24 17:02
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
cout<<"產生5個1~100間的隨機亂數:";
srand(time(NULL));
for(int i=1; i<=10;i++)
{
cout<<rand()%100+1<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2011-12-24 17:04
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"產生5個~100間的隨機亂數:";
srand(time(NULL));
for(int i=1; i<=10;i++)
{
cout<<rand()%100+1<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2011-12-24 17:05
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"產生5個1-100間的隨機亂數: "<<endl;
srand(time(NULL));
for(int i=1; i<=5; i++)
{
cout<<rand()%100+1<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
許逸瑋
時間:
2011-12-24 17:08
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"產生1~100間的的隨機亂"<<endl;
srand(time(NULL));
for(int i=1; i<=10;i++)
{
cout<<rand()%100+1<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2011-12-24 17:08
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
cout<<"從1~100取出5個數:"<<endl;
srand(time(NULL));
for(int i=1; i<=5; i++)
{
cout<<rand()%100+1<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2