下列代码中,将引起编译错误的行是( )。 1) public class Exercise{ 2) public static void main(String args[]) { 3) float f=0.0; 4) f+=0; 5) } 6) } A.第2行 B.第3行 C.第4行 D.第6行
举一反三
- 下列代码中,将引入编译错误的行是1 public class Exercise{2 public static void main(String args[]){3 float f = 0.0 ;4 f = f + 1.0 ;5 }6 }
- 下列代码中,将引起一个编译错误的行是( )。 1) public class Test 2) int m,n; 3) public Test() 4) public Test(int A: m=a; B: 5) public static void main(String args[]) C: 6) Test t1,t2; D: 7) int j,k; E: 8) j=0;k=0; F: 9) t1=new Test(); G: 10) t2=new Test(j,k); H: 11) I: 12) A) 第3行 J: 第5行 K: 第6行 L: 第10行
- 下列代码中,将引起一个编译错误的行是______。 1)public class Test{ 2) int m,n; 3) public Test(){} 4) public Test(int a){m=a;} 5) public static void main(String args[]){ 6) Test t1,t2; 7) int j,k; 8) j=0;k=0; 9) t1=new Test(); 10) t2=new Test(j,k); 11) } 12) }
- 下列代码中,将引入编译错误的行是1 public class Exercise... = f + 1.0 ;5 }6 }
- 下列标注行中,( )行代码有错。 interface Com{ int MAX=100; //1 void f(); } abstract class Animal implements Com{ int MIN; //2 } class Dog extends Animal{ public void f(){ MIN=10; //3 MAX=200; //4 } } A: 1 B: 2 C: 3 D: 4