下面一个 随机产生20个整数的数组,查找出大最值,如下代码:include <stdio.h>#include <stdlib.h>#include int main() {int numbers[20], max, i;srand((unsigned int)time(NULL));for (i = 0; i < 20; i++) {numbers[i] = rand() % 100;}max = numbers[0];for (i = 1;...
void main() { int a[6]; int max = 0; for(int i =0;i<6;i++) ...