求解 哪里錯了。謝謝??!
#include?<stdio.h> /*?考慮一下哪個輸出該用無參函數(shù)哪個輸出該用有參函數(shù)呢??*/ int?wucan() { ????printf("%s\n","小明在慕課網(wǎng)上學(xué)習(xí)"); ????return?0; ????} int?youcan(int?n) { ????printf("小明在慕課網(wǎng)上已經(jīng)學(xué)習(xí)了%d門課程",n); ????return?0; } int?main() { ?????wucan(); ?????youcan(5); ????return?0; }
2015-08-31
這里的括號錯了,改成英文的括號即可