標題:
049 取得隨機亂數
[打印本頁]
作者:
游東祥
時間:
2014-5-3 14:03
標題:
049 取得隨機亂數
程式執行後直接輸出10個亂數,並且每次產生的10個亂數都必須不同。
作者:
李允軒
時間:
2014-5-3 14:42
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
srand(time(NULL));
for (int b = 1; b <= 10; b++)
{
int a = rand();
cout << "第" << b <<"個亂數:" << a << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-5-3 14:44
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
int a = 0;
srand(time(NULL));
for(int i = 1;i <= 10 ;i++)
{
int a = rand();
cout << "第" << i << "個亂數為 : " << a << endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2