任意输入n个数,输出其中最大值与最小值,并输出它在序列中的位置!C语言编程
问题描述:
任意输入n个数,输出其中最大值与最小值,并输出它在序列中的位置!C语言编程
答
#include <stdio.h>#include <stdlib.h>int main(){ int i, j, n, max_pos = 0, min_pos = 0; int *&nbs...