使用数组实现如下功能:从键盘输入10个整数,输出最大值和最小值.
问题描述:
使用数组实现如下功能:从键盘输入10个整数,输出最大值和最小值.
答
C 语言版:#include#define N 10int main(){int temp,max,min;printf("请输入:\n");for(int i = 0; i != N; ++i){scanf("%d",&temp);if( i == 0 )max = min = temp;else{if( temp > max )max = temp;else if( temp <... style="margin-top:20px">