[单项选择题] 执行下面程序段,屏幕上将输出( )。 public class Test private int x=10,y=20;public Test (int x,int y) Sys
17 查阅
[单项选择题] 执行下面程序段,屏幕上将输出( )。
public class Test
private int x=10,y=20;
public Test (int x,int y)
System.out.println (x+this.x);
System.out.println (y+y);
public static void main (String[] args)
Testt= new Test(30,50);
A.无输出B.20
40
C.40
100
D.40
70
参考答案: