标签:pause for 数组 int ret system 查找 clu max
#include <stdio.h>
#include <stdlib.h>
int main()
{
int add[] = { 1,256,12,621,62,3462,6,89999,87};
int Max=add[0];
int Mini;
for (int x = 0; x < g; x++) {
if (add[x] > Max)
{
Max = add[x];
}
}
printf("该数组内最大的值是:%d\n", Max);
system("pause");
return 0;
}
标签:pause for 数组 int ret system 查找 clu max
原文地址:https://www.cnblogs.com/WangxinCode/p/14111110.html