问题 填空题

下列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) abs

判断题