为了账号安全,请及时绑定邮箱和手机立即绑定

为什么每次都运行不对?大神帮忙!

int a()
{printf("小明在慕课网上学习");
return 0;
}

int b(int n)
{
    printf("小明在慕课网上学了%d门课程",n);
    return 0;
}

int main()
{
    a();
    b(5);
    return 0;
}

正在回答

2 回答

标点符号错了,改成英文的即可

如:

int a()
{
    printf("小明在慕课网上学习\n");
    return 0;
}
int b(int n)
{
    printf("小明在慕课网上学了%d门课程",n);
    return 0;
}
int main()
{
    a();
    b(5);
    return 0;
}


0 回复 有任何疑惑可以回复我~
#1

Beyond1111 提问者

非常感谢!
2015-12-03 回复 有任何疑惑可以回复我~
#2

Beyond1111 提问者

怎么能分辨出来中英文?
2015-12-03 回复 有任何疑惑可以回复我~
#3

Perona 回复 Beyond1111 提问者

中文的比较大,英文的比较瘦。敲多了就有感觉了,可以下载个软件在本地编码,一般敲成中文都会提示的。
2015-12-03 回复 有任何疑惑可以回复我~

/249/5442/As0n/hello.c: In function 'a':
/249/5442/As0n/hello.c:9:1: error: stray '\357' in program
{printf("小明在慕课网上学习");
^
/249/5442/As0n/hello.c:9:1: error: stray '\274' in program
/249/5442/As0n/hello.c:9:1: error: stray '\233' in program
/249/5442/As0n/hello.c:10:1: error: expected ';' before 'return'
return 0;
^
/249/5442/As0n/hello.c: In function 'b':
/249/5442/As0n/hello.c:15:5: error: stray '\357' in program
     printf("小明在慕课网上学了%d门课程",n);
     ^
/249/5442/As0n/hello.c:15:5: error: stray '\274' in program
/249/5442/As0n/hello.c:15:5: error: stray '\214' in program
/249/5442/As0n/hello.c:15:55: error: expected ')' before 'n'
     printf("小明在慕课网上学了%d门课程",n);
                                               

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么每次都运行不对?大神帮忙!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信