大きい順に3つ表示する。
/***************************
* 2012/03/20
* AOJ Volume0 0001
* List of Top 3 Hills
* crane
****************************/
#include<iostream>
using namespace std;
int main(){
int input[10];
int tmp;
for(int i=0; i<10; i++)
cin >> input[i];
for(int j=0; j<9; j++){
for(int k=j+1; k<10; k++){
if(input[j] < input[k]){
tmp = input[k];
input[k] = input[j];
input[j] = tmp;
}
}
}
for(int i=0; i<3; i++)
cout << input[i] << endl;
return 0;
}
0 件のコメント:
コメントを投稿