標題:
[隨堂測驗] 排序 (二)
[打印本頁]
作者:
陳品肇
時間:
2022-4-23 10:05
標題:
[隨堂測驗] 排序 (二)
本帖最後由 陳品肇 於 2022-4-23 11:32 編輯
產生10個範圍介於1~20之
不重複
隨機亂數, 並利用
選擇排序法
將它們
由小而大
排列出來.
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
srand(time(NULL));
int n[10],tmp;
re:
for(int i=0; i<10; i++)
{
n[i]=rand()%20+1;
for(int j=0; j<i; j++)
{
if(n[i]==n[j])
{
i--;
break;
}
}
}
for(int i=0; i<9; i++)
{
for(int j=i+1; j<10; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"10個範圍介於1~20之不重複隨機亂數, 由小而大依序為:"<<endl;
for(int i=0; i<10; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
曾善勤
時間:
2022-4-23 11:33
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
srand(time(NULL));
int n[10],tmp;
re:
for(int i=0; i<10; i++)
{
n[i]=rand()%20+1;
for(int j=0; j<i; j++)
{
if(n[i]==n[j])
{
i--;
break;
}
}
}
for(int i=0; i<9; i++)
{
for(int j=i+1; j<10; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"10個範圍介於1~20之不重複隨機亂數, 由小而大依序為:"<<endl;
for(int i=0; i<10; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
柳侑辰
時間:
2022-4-23 11:34
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
srand(time(NULL));
int n[10],tmp;
re:
for(int i=0; i<10; i++)
{
n[i]=rand()%20+1;
for(int j=0; j<i; j++)
{
if(n[i]==n[j])
{
i--;
break;
}
}
}
for(int i=0; i<9; i++)
{
for(int j=i+1; j<10; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"10個範圍介於1~20之不重複隨機亂數, 由小而大依序為:"<<endl;
for(int i=0; i<10; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
高鋐鈞
時間:
2022-4-23 11:36
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
srand(time(NULL));
int n[10],tmp;
re:
for(int i=0; i<10; i++)
{
n[i]=rand()%20+1;
for(int j=0; j<i; j++)
{
if(n[i]==n[j])
{
i--;
break;
}
}
}
for(int i=0; i<9; i++)
{
for(int j=i+1; j<10; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"10個範圍介於1~20之不重複隨機亂數, 由小而大依序為:"<<endl;
for(int i=0; i<10; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
田家齊
時間:
2022-4-23 11:39
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
int n[10],tmp;
re:
for(int i=0;i<10;i++)
{
n[i]=rand()%20+1;
for(int j=0; j<i; j++)
{
if(n[i]==n[j])
{
i--;
break;
}
}
}
for(int i=0;i<9;i++)
{
for(int j=i+1;j<10;j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"10個範圍介於1~20之不重複隨機亂數, 由小而大依序為:"<<endl;
for(int i=0;i<10;i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許宸瑀
時間:
2022-4-23 11:40
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
srand(time(NULL));
int n[10],tmp;
re:
for(int i=0; i<10; i++)
{
n[i]=rand()%20+1;
for(int j=0; j<i; j++)
{
if(n[i]==n[j])
{
i--;
break;
}
}
}
for(int i=0; i<9; i++)
{
for(int j=i+1; j<10; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"10個範圍介於1~20之不重複隨機亂數, 由小而大依序為:"<<endl;
for(int i=0; i<10; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
鍾易澄
時間:
2022-4-23 11:40
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
srand(time(NULL));
int n[10],tmp;
re:
for(int i=0; i<10; i++)
{
n[i]=rand()%20+1;
for(int j=0; j<i; j++)
{
if(n[i]==n[j])
{
i--;
break;
}
}
}
for(int i=0; i<9; i++)
{
for(int j=i+1; j<10; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"10個範圍介於1~20之不重複隨機亂數, 由小而大依序為:"<<endl;
for(int i=0; i<10; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
孫子傑
時間:
2022-4-23 11:44
#include<cstdlib>
#include<iostream>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
int x[10],z;
re:
for(int i=0; i<10;i++)
{
x[i]=rand()%20+1;
for(int j=0;j<i;j++)
{
if(x[i]==x[j])
{
i--;
break;
}
}
}
for(int i=0;i<9;i++)
{
for(int j=i+1; j<10; j++)
{
if(x[j]<x[i])
{
z=x[j];
x[j]=x[i];
x[i]=z;
}
}
}
cout<<"10個範圍介於1~20之不重複隨機亂數, 由小而大依序為:"<<endl;
for(int i=0; i<10; i++)
cout<<x[i]<<" ";
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
郭博鈞
時間:
2022-4-23 11:46
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
int n[10],tmp;
re:
for(int i=0; i<10; i++)
{
n[i]=rand()%20+1;
for(int j=0; j<i; j++)
{
if(n[i]==n[j])
{
i--;
break;
}
}
}
for(int i=0; i<9; i++)
{
for(int j=i+1; j<10; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"10個範圍介於1~20之不重複隨機亂數, 由小而大依序為:"<<endl;
for(int i=0; i<10; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
許馹東
時間:
2022-4-23 11:48
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
srand(time(NULL));
int n[10],tmp;
re:
for(int i=0; i<10; i++)
{
n[i]=rand()%20+1;
for(int j=0; j<i; j++)
{
if(n[i]==n[j])
{
i--;
break;
}
}
}
for(int i=0; i<9; i++)
{
for(int j=i+1; j<10; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"10個範圍介於1~20之不重複隨機亂數, 由小而大依序為:"<<endl;
for(int i=0; i<10; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
高昀昊
時間:
2022-4-23 11:51
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
srand(time(NULL));
int n[10],tmp;
re:
for(int i=0; i<10; i++)
{
n[i]=rand()%20+1;
for(int j=0; j<i; j++)
{
if(n[i]==n[j])
{
i--;
break;
}
}
}
for(int i=0; i<9; i++)
{
for(int j=i+1; j<10; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"10個範圍介於1~20之不重複隨機亂數, 由小而大依序為:"<<endl;
for(int i=0; i<10; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
林紘憲
時間:
2022-4-23 11:59
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
srand(time(NULL));
int n[10],tmp;
re:
for(int i=0; i<10; i++)
{
n[i]=rand()%20+1;
for(int j=0; j<i; j++)
{
if(n[i]==n[j])
{
i--;
break;
}
}
}
for(int i=0; i<9; i++)
{
for(int j=i+1; j<10; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"10個範圍介於1~20之不重複隨機亂數, 由小而大依序為:"<<endl;
for(int i=0; i<10; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
徐譽豈
時間:
2022-4-30 09:56
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main(){
srand(time(NULL));
int n[10],tmp;
re:
for(int i=0; i<10; i++)
{
n[i]=rand()%20+1;
for(int j=0; j<i; j++)
{
if(n[i]==n[j])
{
i--;
break;
}
}
}
for(int i=0; i<9; i++)
{
for(int j=i+1; j<10; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"10個範圍介於1~20之不重複隨機亂數, 由小而大依序為:"<<endl;
for(int i=0; i<10; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2