给出下列【代码】注释标注的代码的输出结果。 import java.lang.Math; public class E { public static void main(String args[]) { int m = (int)Math.sqrt(9); int n = Math.abs(-20); System.out.printf("%d:%d",m,n); //【代码】 } }
主观题
给出下列【代码】注释标注的代码的输出结果。 import java.lang.Math; public class E { public static void main(String args[]) { int m = (int)Math.sqrt(9); int n = Math.abs(-20); System.out.printf("%d:%d",m,n); //【代码】 } }