标签:style blog io color ar os for sp strong
描述
现在要写一个程序,实现给三个数排序的功能
20 7 33
7 20 33
#include <iostream> using namespace std; int main() { int arr[3]; for(int i=0 ;i<3 ; i++) cin>>arr[i]; int temp; for(int i =0 ;i<3; i++) { for(int j = 0;j<2-i;j++) { if(arr[j] >arr[j+1]){ temp = arr[j]; arr[j] = arr[j+1]; arr[j+1] = temp; } } } for(int k = 0;k<3;k++) cout<<arr[k]<<" "; return 0; }
标签:style blog io color ar os for sp strong
原文地址:http://www.cnblogs.com/imwtr/p/4069456.html