#include <stdio.h>
int main()
{
int age = 19 /*这里定义年龄*/
printf("我今年%d岁!\n", age);
return 0;
}
错哪里了
漏了个分号;
19后面的分号
没有加分号
int age 漏了;