1. 程式人生 > >(指標)輸入10個整數, 把最小的與第一個數交換, 最大的與最後一個數交換

(指標)輸入10個整數, 把最小的與第一個數交換, 最大的與最後一個數交換

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<string>
#include<cmath>
#include<queue>
#include<vector>
using namespace std;
void input(int *num)       //輸入10個數的函式
{
    int i;
    printf("input 10 numbers:");
    for(i=0
; i<10; i++){ scanf("%d", &num[i]); } } void swap(int *num) { int *max, *min, *p, temp; max = min = num; //開始時使max和min都指向第一個數 for(p = num+1; p < num+10; p++){ if(*p > *max) max = p; //若p指向的數大於max指向的數,就使max指向p指向的大數 else if(*p < *min) min = p; //若p指向的數小於min指向的數,就使min指向p指向的小數
} temp = num[0]; num[0] = *min; *min = temp; //將最小數與第一個數num[0]交換 if(max == num) max = min; //若max和num相等,表示第一個數是最大數,則使max指向當前的最大數 temp = num[9]; num[9] = *max; *max = temp; //將最大數與最後一個數num[9]交換 } void output(int *num) { int *p; printf("Now, they are:"); for
(p = num; p < num+10; p++){ printf("%d ", *p); } printf("\n"); } int main() { int num[10]; input(num); swap(num); output(num); return 0; }