标题:关于continue和平均数的问题
取消只看楼主
Timber
Rank: 1
等 级:新手上路
帖 子:42
专家分:0
注 册:2010-1-31
结帖率:71.43%
已结贴  问题点数:20 回复次数:0 
关于continue和平均数的问题
double sum = 0;
    int tmp = 0;
    int i = 0;
    while ( 1 )
    {
        printf("please input a number: ");
        scanf("%d",&tmp);
        if ( tmp ==0 )
            break;
        else if (tmp<0)
        {
            printf("only positive numbers are accepted\n");
        }
        continue;
        sum += tmp;
        i++;
    }


    printf("the average is %0.2lf",sum/i );

    return 0;
}
请问大大,哪里有问题
输入2 2 -1 0
结果很奇怪。。the average is -1.#J
搜索更多相关主题的帖子: 平均数 continue 
2010-01-31 22:23



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




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

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