输入PrintN void PrintN(int N){ for(int i=1;i<=N;i++){ printf("%d\n",i); } } 更正的错误点: 函数名写成了"printN" for循环使用了逗号 没有加分号 没有加“\n”