发布网友 发布时间:2024-10-22 18:55
共3个回答
热心网友 时间:2024-10-25 00:24
#include<stdio.h>
int x(int *a,int b);
int main ()
{
int d[100],c=0,i=0;
int time_result;
while (i<=100)
{
if(scanf("%d",&d[i])==EOF) //使用&d[i],而不是&d,你输入的是数组中的元素,按CTRL+Z结束
{
break;
}
i++;
}
time_result = x(d,c); //你原先使用的是传值的方式,是得不到这个结果的,可以使用指针或者引用, 以及函数返回值的方式来获取这个值;
printf("the statistics result is:%d\n",time_result);
return 0;
}
int x(int *a,int b)
{
int y=0;
b=0;
while (y<=100)
{
if( *(a+y) == 34) //a是一个数组,可以用指针或者下标方式a[y]获取数组元素;
{
b++;
}
y++; //数组向后查找,数组下标递增即可,
}
return b;
}
运行结果:
排版了反而变乱了。
建议:
数组一般使用for循环,if判断尽量用大括号括住判断覆盖的语句,尽管只有一行,这样看起来清晰明了;
热心网友 时间:2024-10-25 00:28
#include<stdio.h>热心网友 时间:2024-10-25 00:21
#include<stdio.h>