标签:style blog io color ar os for sp strong
描述
设计一个从5个整数中取最小数和最大数的程序
1 2 3 4 5
1 5
#include<iostream> using namespace std; int main() { int temp = 0; int arr[5]; for(int i=0;i<5;i++) cin>>arr[i]; for(int i=0;i<5;i++){ for(int j=0;j<4-i;j++){ if(arr[j]>arr[j+1]) { temp = arr[j]; arr[j] = arr[j+1]; arr[j+1] = temp; } } } cout<<arr[0]<<" "<<arr[4]<<endl; return 0; }
标签:style blog io color ar os for sp strong
原文地址:http://www.cnblogs.com/imwtr/p/4069437.html