标题:只是问一句这个程序没有问题吧,为什么在c-free上运行会是这样啊?
只看楼主
civilherui
Rank: 2
来 自:陕西榆林
等 级:论坛游民
威 望:2
帖 子:67
专家分:97
注 册:2015-1-18
结帖率:100%
已结贴  问题点数:4 回复次数:2 
只是问一句这个程序没有问题吧,为什么在c-free上运行会是这样啊?
//goto语句//
#include<stdio.h>
main()
{
    int count=1,total=0,grade;
    star: if(count<=10)
    {
        printf("please input the grade:\n");
        scanf("%d",grade);
        total=total+grade;
        count++;
        goto star;
    }
    printf("total=%d\n",total);
    return 0;
}
为什么会是这样啊?
“出现了一个问题,导致程序停止正常工作。如果有可用的解决方案,Windows将关闭程序并通知你。”
这是怎么回事?
搜索更多相关主题的帖子: count star 
2015-01-26 20:06
朱大哥
Rank: 3Rank: 3
等 级:论坛游侠
威 望:2
帖 子:72
专家分:123
注 册:2015-1-16
得分:4 
#include<stdio.h>
main()
{
    int count=1,total=0,grade;
    star: if(count<=10)
    {
        printf("please input the grade:\n");
        scanf("%d",grade);              ------------------>此语句请更改为 scanf("%d",&grade); 即可,请看 scanf函数使用手册
        total=total+grade;                ---------------->windows弹这样的框 一般情况是非法使用内存
        count++;
        goto star;                        ------------------>goto语句尽量少用  原因是不符合程序设计理念
    }
    printf("total=%d\n",total);
    return 0;
}


[ 本帖最后由 朱大哥 于 2015-1-26 20:21 编辑 ]
2015-01-26 20:17
civilherui
Rank: 2
来 自:陕西榆林
等 级:论坛游民
威 望:2
帖 子:67
专家分:97
注 册:2015-1-18
得分:0 
回复 2楼 朱大哥
万分感谢

我走向的将是机械、电子、编程的集成之路。
2015-01-27 09:57



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




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

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