[求助]形参数组
#include "stdio.h"f(int a[])
{ int i=0;
while (a[i]<=10)
{ printf("%d",a[i]);
i++;}
}
main()
{ int a[]={1,5,10,9,11,7};
f(a+1);
}
为什么不把最后的7当做结果?
----------------解决方案--------------------------------------------------------
while循环结束啦
----------------解决方案--------------------------------------------------------
因为到11 的时候就循环结束了,要输出就用IF 而不是WHILE
----------------解决方案--------------------------------------------------------