本帖最后由 繁华落幕 于 2015-6-24 22:22 编辑
如下 java 源程序文件,该文件中“/*$1*/”行中的语句有错误,请改正。 (注意: 不改动程序的结
构,不得增行或删行)
【运行结果】
30
【程序代码】
public class Test {
private int value;
public void Test(int n) /* $1 */ public Test(int n)
{
value = n;
}
public int getMax(int x, int y) {
if(x >= y && x >= value)
return x;
else if(y >= value)
return y;
else
return value;
}
public static void main(String[] args) {
Test obj = new Test(10);
System.out.println(obj.getMax(20, 30));
}
}
|
|