标题:输出为何和书上不一样,代码除int main()的参数不一样其他都相同
只看楼主
枯_草
Rank: 2
等 级:论坛游民
帖 子:17
专家分:44
注 册:2016-11-12
结帖率:33.33%
已结贴  问题点数:8 回复次数:2 
输出为何和书上不一样,代码除int main()的参数不一样其他都相同
#include<stdio.h>
#define SIZE 10
#define PAR 72
/*没有viod就可以编译通过*/
int main(viod)//错误处及原因:    [Error] 'viod' was not declared in this scope
{
    int index,score[SIZE];
    int sum=0;
    float average;

    printf("enter %d golf scores:\n",SIZE);
    for(index=0;index<SIZE;index++)
    scanf("%d",&score[index]);

    printf("the scores read in are as follows:\n");
    for(index=0;index<SIZE;index++)
    printf("%5d",&score[index]);
    printf("\n");

    for(index=0;index<SIZE;index++)
    sum+=score[index];

    average=(float) sum/SIZE;
    printf("sum of scores=%d,average=%.2f\n",sum,average);
    printf("that's a handicap of %.0f.\n",average-PAR);
    return 0;
}

[此贴子已经被作者于2016-11-13 01:36编辑过]

搜索更多相关主题的帖子: scores include average declared 
2016-11-12 23:55
炎天
Rank: 13Rank: 13Rank: 13Rank: 13
来 自:桃花岛
等 级:贵宾
威 望:29
帖 子:1218
专家分:4986
注 册:2016-9-15
得分:8 

早知做人那么辛苦!  当初不应该下凡
2016-11-13 01:34
枯_草
Rank: 2
等 级:论坛游民
帖 子:17
专家分:44
注 册:2016-11-12
得分:0 
回复 2楼 炎天
嗯,我已经知道了,谢谢。
2016-11-13 12:14



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-471071-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.656366 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved