下列代码中,将引起编译错误的行是(  )。 ① public class test{ ② public static void main(String args[]){ ③ float f=0.0; ④ f+=1.0;

admin2010-12-17  35

问题 下列代码中,将引起编译错误的行是(  )。    ① public class test{    ② public static void main(String args[]){    ③    float f=0.0;    ④    f+=1.0;    ⑤    }    ⑥ }

选项 A、第2行
B、第3行
C、第4行
D、第6行

答案D

解析 float定义变量赋值时,需要在数值后面加f以标识它为浮点型,让系统知道该给它精确到多少位。
转载请注明原文地址:https://kaotiyun.com/show/fg9p777K
0

最新回复(0)