#include <stdio.h>
int main()
{
int age=18 /*这里定义年龄*/
printf("我今年%d岁!\n", age);
return 0;
}
哪里错了
谢谢你
第四行你少了个“;”