为什么我先这样写
int age;height;weight; 多了这么一行就不可以运行了 删除后就可以了 新手求指点。。
int age=15
float weight=162
反正不能使分号,分号是一个句子完成才能用分号 如:int age,height,weight;
改成 int age,height;
float weight;