標題:
亂數 - 隨機亂數
[打印本頁]
作者:
tonyh
時間:
2015-4-18 11:15
標題:
亂數 - 隨機亂數
本帖最後由 tonyh 於 2015-4-18 11:25 編輯
搭配時間函式, 產生20組隨機亂數.
time(NULL)可回傳, 從格林威治時間 1970年1月1號 0點0分0秒開始到現在的秒數.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL)); //設定亂數種子
for(int i=1; i<=20; i++)
cout<<rand()<<endl; //使用rand()函式產生固定亂數
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2015-4-18 11:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1; i<=20; i++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2015-4-18 11:24
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1;i<=20;i++)
cout<<rand()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2015-4-18 11:24
#include <iostream>
#include <cstdlib>;
using namespace std;
int main()
{
srand(time(NULL));
for(int a=1 ;a<=20; a++)
cout<<rand()<<endl;
system ("pause") ;
return 0;
}
複製代碼
作者:
李大全
時間:
2015-4-18 11:28
本帖最後由 李大全 於 2015-4-18 11:46 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
for(int a=1;a<=20;a++)
{
cout<<rand()<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2015-4-21 20:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
for(int i=1;i<=20;i++)
cout<<rand()<<","<<"\a"<<"\n";
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2