#include<stdio.h>
main[]
{
int x;
x=123*4
printf ("%d",x) ;
}
首先main函数要带类型,然后main函数后面是括号()
博主,x=123*4后面是不是没加分号