void balloon(){ int num, N[10], x, y, z,temp;clrscr();cout<<"How many number would you like to sort? ";cin>>num;cout<<"Input the "<<num<<" numbers:"<<endl;for(x=0;x<num;x++)cin>>N[x];for(x=0;x<num;x++){for(y=0;y<num-x;y++){ if(N[x] > N[x+y]){ temp=N[x];N[x] =N[x+y];N[x+y]=temp;}}cout<<"pass "<<x+1<<"] ";for(z=0;z<num;z++){cout<<setw(5)<<N[z];}cout<<endl;}}