標題:
047 取得固定亂數
[打印本頁]
作者:
游東祥
時間:
2014-5-3 13:13
標題:
047 取得固定亂數
在畫面上輸出10個由系統產生的亂數
作者:
林宇翔
時間:
2014-5-3 13:40
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a = 0;
for(int i = 1;i <= 10 ;i++)
{
int a = rand();
cout << "第" << i << "個亂數為 : " << a << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-5-3 13:43
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a = 0;
for (int b = 1; b <= 10; b++)
{
a = rand();
cout << "第" << b <<"個亂數:" << a << endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2