执行下列程序,输出结果为()。
public class B{
public static void main(String[] args) {
int x = 5;
double y = 10.5f;
float z = (float)(x*y);
System.out.println(z);
}
}
public class B{
public static void main(String[] args) {
int x = 5;
double y = 10.5f;
float z = (float)(x*y);
System.out.println(z);
}
}
举一反三
- 写出下面程序运行结果。 public class Demo { public static void main(String args[]) { int x = 9, y = 11, z = 8; int t, w; t = x > y ? x : y + x; w = t > z ? t : z; System.out.println(w); } }
- 执行下列程序,输出结果为()。publicclassB{publicstaticvoidmain(String[]args){intx=5;doubley=10.5f;floatz=(float)(x*y);System.out.println(z);}}
- 以下程序的输出结果为: public class test { public static void main(String args[]) { int x=1,y=1,z=1; if (x--==1&&y++==1||z++==1) System.out.println("x="+x+",y="+y+",z="+z); } }
- 关于下面的程序Test.java说法正确的是( )。 public class Test { String x='1'; int y; public static void main(String args[]) { int z=2; System.out.println(x+y+z); } }
- 下列程序的运行结果? public class Test { public static void main(String a[]) { int x=3,y=4,z=5; if (x>3) { if (y<2) System.out.println("show one"); else System.out.println("show two"); } else { if (z>4) System.out.println("show three"); else System.out.println("show four"); } } }