2009年8月12日 星期三

C++學習檔案 < 亂數列排大小+輸入值列出位置 >

C++學習檔案 < 亂數列排大小+輸入值列出位置 >


< 亂數列排大小+輸入值列出位置 >

#include <iomanip>

#include <iostream>

#include <time.h>

#include <stdlib.h>

using namespace std;

int main() {

srand(time(0));

int o[15],n[15],m=0,t;

for(int i=0;i<15;i++){

o[i] = rand()%100;

n[i] = 0;

cout << setw(3) << o[i];

}

cout <<endl;

for(int j=0;j<15;j++){

for(int i=0;i<15;i++){

if( o[i] > n[j]){

n[j] = o[i];

m=i;

}

}

o[m] =0;

cout << setw(3) << n[j];

}

cout <<endl<<"plz input integer value" << endl;

cin >> t;

for(int i=0;i<15;i++){

if(n[i]==t){

cout << "integer " << n[i] << " was fount in site " << i+1 <<endl;

}

}

system("pause");

return 0;

}


================END==============

沒有留言:

張貼留言