问答详情
源自:2-4 基本数据类型

为什么 我赋值之后就不 运行了

为什么我先这样写

  int age;height;weight;    多了这么一行就不可以运行了  删除后就可以了  新手求指点。。

   int age=15

    float  weight=162

提问者:Vip残血 2016-01-20 20:56

个回答

  • java李坤
    2016-01-20 21:37:32
    已采纳

    反正不能使分号,分号是一个句子完成才能用分号  如:int age,height,weight;

  • java李坤
    2016-01-20 21:36:26

    改成  int age,height;

             float weight;