#include <stdio.h >void printN (int N );int main(){int N;scanf("%d", &N);printN( N);return 0;}
void printN (int N )这个函数 你只是在前面声明 了,没有定义啊