int f(){ int a; a=a+3; printf("%d",a); return 0; } void main.(){ int x; scanf("%d",&x); x=f(); } 哪里有问题吗?
int f(){ 改成int main()