下列Application程序中,指定v为32位整数类型,求出v的绝对值并输出,请将程序补充完整。class test1

8 查阅

下列Application程序中,指定v为32位整数类型,求出v的绝对值并输出,请将程序补充完整。

class test19_1 {

public static void main(String args[]) {

______v=-100;

char ch=______Math.______(v);

System.out.println("ch="+ch);

}

}

参考答案:

int (char) absint (char) abs

计算机二级