為什么 我賦值之后就不 運(yùn)行了
為什么我先這樣寫
??int age;height;weight; ? ?多了這么一行就不可以運(yùn)行了 ?刪除后就可以了 ?新手求指點(diǎn)。。
? ?int age=15
????float ?weight=162
為什么我先這樣寫
??int age;height;weight; ? ?多了這么一行就不可以運(yùn)行了 ?刪除后就可以了 ?新手求指點(diǎn)。。
? ?int age=15
????float ?weight=162
2016-01-20
舉報(bào)
2016-01-20
反正不能使分號,分號是一個(gè)句子完成才能用分號 ?如:int age,height,weight;
2016-01-20
改成 ?int age,height;
? ? ? ? ?float weight;