哪里出错了呢
#include <stdio.h>
/* 考虑一下哪个输出该用无参函数哪个输出该用有参函数呢? */
int Matrix()
{
printf("%s\n","小明在慕课网上学习");
return 0;
}
int class(int n)
{
printf("小明在慕课网上已经参与学习了%d\n门课程",n);
return 0;
}
int main()
{
Matrix();
class(5);
return 0;
}
#include <stdio.h>
/* 考虑一下哪个输出该用无参函数哪个输出该用有参函数呢? */
int Matrix()
{
printf("%s\n","小明在慕课网上学习");
return 0;
}
int class(int n)
{
printf("小明在慕课网上已经参与学习了%d\n门课程",n);
return 0;
}
int main()
{
Matrix();
class(5);
return 0;
}
2020-02-08
举报