標題:
[作業] 產生不重複之隨機亂數 (三)
[打印本頁]
作者:
鄭繼威
時間:
2022-4-15 19:11
標題:
[作業] 產生不重複之隨機亂數 (三)
本帖最後由 陳品肇 於 2022-4-23 10:22 編輯
假設班上有五位同學: 子耕, 思惟, 璽安, 侑成, 挺桂.
試做一程式, 可隨機地抽選出三位同學. (抽籤的目的自由發揮)
提示:試試看一樣的邏輯隨機取index
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
string n[5]={"子耕", "思惟", "璽安", "侑成", "挺桂"};
int x[3];
srand(time(NULL));
for(int i=0; i<3; i++)
{
x[i]=rand()%5; //0~4
for(int j=0; j<i; j++)
{
if(x[i]==x[j])
{
i--;
break;
}
}
}
cout<<"掃廁所三位同學: ";
for(int i=0; i<3; i++)
cout<<n[x[i]]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
高昀昊
時間:
2022-4-16 15:21
#include<cstdlib>
#include<iostream>
#include<ctime>
using namespace std;
int main()
{
cout<<"以下為本校參加全國摔角大亂鬥的同學:";
int n[3];
string m[5]={"子耕" ,"思惟" ,"璽安", "侑成", "挺桂"};
srand(time(NULL));
for(int j=0; j<3; j++)
{
n[j]=rand()%5;
for(int k=0; k<j; k++)
{
if(n[k]==n[j])
{
j--;
break;
}
}
}
for(int j=0; j<3; j++)
{
cout<<m[n[j]]<<" ";
}
cout<<endl<<"念到的同學請到教務處填寫個人資料以便報名及聯絡,謝謝"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林鴻慶
時間:
2022-4-17 12:38
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
string n[5]={"子耕", "思惟", "璽安", "侑成", "挺桂"};
int x[3];
srand(time(NULL));
for(int i=0; i<3; i++)
{
x[i]=rand()%5; //0~4
for(int j=0; j<i; j++)
{
if(x[i]==x[j])
{
i--;
break;
}
}
}
cout<<"掃廁所三位同學: ";
for(int i=0; i<3; i++)
cout<<n[x[i]]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鍾易澄
時間:
2022-4-23 10:23
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
string n[5]={"子耕", "思惟", "璽安", "侑成", "挺桂"};
int x[3];
srand(time(NULL));
for(int i=0; i<3; i++)
{
x[i]=rand()%5;
for(int j=0; j<i; j++)
{
if(x[i]==x[j])
{
i--;
break;
}
}
}
cout<<"掃廁所三位同學: ";
for(int i=0; i<3; i++)
cout<<n[x[i]]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾善勤
時間:
2022-4-23 10:24
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
string n[5]={"子耕", "思惟", "璽安", "侑成", "挺桂"};
int x[3];
srand(time(NULL));
for(int i=0; i<3; i++)
{
x[i]=rand()%5; //0~4
for(int j=0; j<i; j++)
{
if(x[i]==x[j])
{
i--;
break;
}
}
}
cout<<"掃廁所三位同學: ";
for(int i=0; i<3; i++)
cout<<n[x[i]]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許宸瑀
時間:
2022-4-23 10:25
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
string n[5]={"子耕", "思惟", "璽安", "侑成", "挺桂"};
int x[3];
srand(time(NULL));
for(int i=0; i<3; i++)
{
x[i]=rand()%5;
for(int j=0; j<i; j++)
{
if(x[i]==x[j])
{
i--;
break;
}
}
}
cout<<"掃廁所三位同學: ";
for(int i=0; i<3; i++)
cout<<n[x[i]]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孫子傑
時間:
2022-4-23 10:27
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
string n[5]={"子耕", "思惟", "璽安", "侑成", "挺桂"};
int x[3];
srand(time(NULL));
for(int i=0; i<3;i++)
{
x[i]=rand()%5;
for(int j=0;j<i;j++)
{
if(x[i]==x[j])
{
i--;
break;
}
}
}
cout<<"掃廁所三位同學: ";
for(int i=0; i<3; i++)
cout<<n[x[i]]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
柳侑辰
時間:
2022-4-23 10:31
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
string n[5]={"子耕", "思惟", "璽安", "侑成", "挺桂"};
int x[3];
srand(time(NULL));
for(int i=0;i<3;i++)
{
x[i]=rand()%5;
for(int j=0;j<i;j++)
{
if(x[i]==x[j])
{
i--;
break;
}
}
}
cout<<"掃廁所三位同學: ";
for(int i=0; i<3; i++)
cout<<n[x[i]]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
田家齊
時間:
2022-4-23 10:31
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
string n[5]={"子耕", "思惟", "璽安", "侑成", "挺桂"};
int x[3];
srand(time(NULL));
for(int i=0;i<3;i++)
{
x[i]=rand()%5;
for(int j=0;j<i;j++)
{
if(x[i]==x[j])
{
i--;
break;
}
}
}
cout<<"掃廁所三位同學: ";
for(int i=0;i<3;i++)
cout<<n[x[i]]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許馹東
時間:
2022-4-23 10:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
string n[7]={"子耕", "思惟", "璽安", "侑成", "奇奇", "阿尼", "挺桂"};
int x[3];
srand(time(NULL));
for(int i=0; i<3; i++)
{
x[i]=rand()%7;
for(int j=0; j<i; j++)
{
if(x[i]==x[j])
{
i--;
break;
}
}
}
cout<<"掃廁所三位同學: ";
for(int i=0; i<3; i++)
cout<<n[x[i]]<<" ";
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
郭博鈞
時間:
2022-4-23 10:43
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
string n[5]={"子耕","思惟","璽安","侑成","挺桂"};
int x[3];
srand(time(NULL));
for(int i=0;i<3;i++)
{
x[i]=rand()%5;
for(int j=0;j<i;j++)
{
if(x[i]==x[j])
{
i--;
break;
}
}
}
cout<<"掃廁所三位同學: ";
for(int i=0;i<3;i++)
{
cout<<n[x[i]]<<" ";
}
system("pause");
return 0;
}
複製代碼
作者:
高鋐鈞
時間:
2022-4-24 12:17
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
string n[5]={"子耕", "思惟", "璽安", "侑成", "挺桂"};
int x[3];
srand(time(NULL));
for(int i=0; i<3; i++)
{
x[i]=rand()%5;
for(int j=0; j<i; j++)
{
if(x[i]==x[j])
{
i--;
break;
}
}
}
cout<<"掃廁所三位同學: ";
for(int i=0; i<3; i++)
cout<<n[x[i]]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
徐譽豈
時間:
2022-4-29 18:14
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
string n[5]={"子耕","思惟","璽安","侑成","挺桂"};
int x[3];
srand(time(NULL));
for(int i=0;i<3;i++)
{
x[i]=rand()%5;
for(int j=0;j<i;j++)
{
if(x[i]==x[j])
{
i--;
break;
}
}
}
cout<<"掃廁所三位同學: ";
for(int i=0;i<3;i++)
{
cout<<n[x[i]]<<" ";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2