/* 思路: 用一个for循环进行比较 假定一个最大值 之后跟其他的进行比较,如果大则交换 */
#include <stdio.h> int arr[5]={1,4,5,6,7,3}; int main(int argc, const char * argv[]) { int max = arr[0]; int temp = 0; for (int i=1; i<5; i++) { if (arr>max) { temp = arr; arr= max; max = temp; } } printf("%d\n",max); return 0; }
|