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

请问我的代码哪里有问题呢?谢谢

include <stdio.h>

/* 考虑一下哪个输出该用无参函数哪个输出该用有参函数呢? */


int test(int o)

{

    printf("小明在慕课网上已经参与学习了%d门课程",o);

}

int main()

{

   test(10);

    return 0;

}


正在回答

2 回答

1、include <stdio.h>前面要加#

2、

int test(int o)

{

    printf("小明在慕课网上已经参与学习了%d门课程",o);

}

这部分你用了int就要在末尾写return 0 ;

还有你的printf中内容的逗号要用英文的逗号

修改后:

#include <stdio.h>
/* 考虑一下哪个输出该用无参函数哪个输出该用有参函数呢? */

int test(int o)
{
 printf("小明在慕课网上已经参与学习了%d门课程",o);
    return 0;
}
int main()
{
    test(10);
    return 0;
}


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

当test函数返回值不是void时,在主函数中调用,需要用一个变量来接收返回值
或者可以将test函数的返回值改为void

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

举报

0/150
提交
取消

请问我的代码哪里有问题呢?谢谢

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