C語言-找出數組元素中的最大值和最小值

#include<stdio.h> #include<stdlib.h> int main(void) { int a[5] = { 7,3,20,8,9 }; int max = a[0]; for (int i = 0; i < 5; i++) { if (a[i] > max) { max = a[i]; } } printf("max is %d\n", m
相關文章
相關標籤/搜索