#14645: c++ sort解


100318 (曹吉百)

學校 : 臺北市立建國高級中學
編號 : 69094
來源 : [210.71.78.244]
最後登入時間 :
2020-11-04 13:56:05
a104. 排序 -- yoooooooo | From: [203.72.178.252] | 發表日期 : 2018-07-27 14:17

#include <bits/stdc++.h>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
int n,i,j,t;
while(cin>>n)
{
int a[n];
for(i=0; i<n; ++i) cin>>a[i];
sort(a,a+n);
}
for(i=0; i<n; ++i) cout<<a[i]<<" ";
cout <<endl;
}
return 0;
}

 
#14646: Re:c++ sort解


100318 (曹吉百)

學校 : 臺北市立建國高級中學
編號 : 69094
來源 : [210.71.78.244]
最後登入時間 :
2020-11-04 13:56:05
a104. 排序 -- yoooooooo | From: [203.72.178.252] | 發表日期 : 2018-07-27 14:18

 

ㄍ更正



#include <bits/stdc++.h>

using namespace std;

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

 

int main(int argc, char** argv) {

int n,i,j,t;

while(cin>>n)

{

int a[n];

for(i=0; i<n; ++i) cin>>a[i];

sort(a,a+n);

 

for(i=0; i<n; ++i) cout<<a[i]<<" ";

cout <<endl;

}

return 0;

}

 
ZeroJudge Forum