求解哪錯了!求幫助!
#include <stdio.h>
/* 考慮一下哪個輸出該用無參函數(shù)哪個輸出該用有參函數(shù)呢? */
int wucan()
{
? ? printf("%s\n", "小明在慕課網(wǎng)上學習");
? ? return 0;
}
int youcan(int n)
{
? ? printf("小明在慕課網(wǎng)上學習了%d門課程",n);
? ? return 0;
}
int main()
{
? ? wucan();
? ? youcan(5);
? ? return 0;
}
2015-04-17
你真是大神
2015-04-16
知道了,有個逗號打成中文的了。