標題:
產生不重複之隨機亂數
[打印本頁]
作者:
tonyh
時間:
2015-9-12 10:39
標題:
產生不重複之隨機亂數
本帖最後由 tonyh 於 2015-9-12 11:46 編輯
試產生4個範圍介於0~9,
不重複
之隨機亂數.
[attach]1386[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int r[4];
srand(time(NULL));
re:
for(int i=0; i<4; i++)
{
r[i]=rand()%10; //0~9
for(int j=0; j<i; j++)
{
if(r[j]==r[i])
{
i--;
break;
}
}
}
for(int i=0; i<4; i++)
cout<<r[i]<<" ";
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
李知易
時間:
2015-9-12 11:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num[4];
srand(time(NULL));
re:
system("cls");
for(int i=0; i<4; i++)
{
num[i] = rand()%10;
for(int j=0;j<i;j++)
{
if(num[j] == num[i])
{
i--;
break;
}
}
}
for(int i=0;i<4;i++)
cout<<num[i]<<" ";
cout<<endl;
system("pause");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2015-9-12 11:43
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int r[4];
srand(time(NULL));
re:
for(int i=0;i<4;i++)
{
r[i]=rand()%10;
for(int j=0;j<i;j++)
{
if(r[j]==r[i])
{
i--;
break;
}
}
}
cout<<"4個介於1-9之間的不重複隨機亂數:";
for(int i=0;i<4;i++)
cout<<r[i]<<" ";
cout<<endl;
system("pause");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2015-9-12 11:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int r[4];
srand(time(NULL));
re:
for(int i=0; i<4; i++)
{
r[i]=rand()%10; //0~9
for(int j=0; j<i; j++)
{
if(r[j]==r[i])
{
i--;
break;
}
}
}
for(int i=0; i<4; i++)
cout<<r[i]<<" ";
cout<<endl;
system("pause");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2015-9-12 12:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int r[4];
srand(time(NULL));
for(int i=0;i<4;i++)
{
r[i]=rand()%10;
for(int j=0;j<i;j++)
{
if(r[j]==r[i])
{
i--;
break;
}
}
}
for(int i=0;i<4;i++)
{
cout<<r[i]<<" ";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2