標題:
產生不重複之隨機亂數
[打印本頁]
作者:
tonyh
時間:
2016-1-15 20:50
標題:
產生不重複之隨機亂數
本帖最後由 tonyh 於 2016-1-15 21:24 編輯
試產生4個範圍介於0~9,
不重複
之隨機亂數.
[attach]1500[/attach]
本帖隱藏的內容需要回復才可以瀏覽
作者:
沈子耕
時間:
2016-1-15 21:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
srand(time(NULL));
re:
int n[4];
for(int i=0; i<=3; i++){
n[i]=rand()%10;
for(int j=0; j<i; j++){
if(n[i]==n[j]){
i--;
break;
}
}
}
for(int i=0; i<=3; i++){
cout<<n[i]<<" ";
}
cout<<endl;
_sleep(200);
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃璽安
時間:
2016-1-15 21:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
srand(time(NULL));
re:
int n[4];
for(int i=0; i<=3; i++){
n[i]=rand()%10;
for(int j=0; j<i; j++){
if(n[i]==n[j]){
i--;
break;
}
}
}
for(int i=0; i<=3; i++){
cout<<n[i]<<" ";
}
cout<<endl;
_sleep(200);
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2016-1-15 21:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
srand(time(NULL));
re:
int n[4];
for(int i=0; i<=3; i++){
n[i]=rand()%10;
for(int j=0; j<i; j++){
if(n[i]==n[j]){
i--;
break;
}
}
}
for(int i=0; i<=3; i++){
cout<<n[i]<<" ";
}
cout<<endl;
_sleep(200);
goto re;
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2016-1-15 21:23
作者:
曾挺桂
時間:
2016-1-15 21:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(time(NULL));
int n[4];
cout<<"4個介於0~9的不重複隨機亂數:"<<endl;
re:
for(int i=0; i<4; i++)
{
n[i]=rand()%10;
for(int j=0; j<i; j++)
{
if(n[i]==n[j])
{
i--;
break;
}
}
}
for(int i=0; i<4; i++)
cout<<n[i]<<" ";
cout<<endl;
_sleep(500);
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2