下面程序执行的结果应是 【8】 。 class Test2 public static void main(String [] args) int i=2,j=1; byte k=(byte)(i+j); System.out.println(k);
举一反三
- 以下程序的运行结果为( ) public class Ex6 { public static void main(String[] args) { int i,j,k; for(i=0;i<3;i++){ for(j=1;j<4;j++){ for(k=2;k<5;k++){ if((i==j)&&(j==k)) System.out.println(i); } } } } }
- 下列程序的运行结果是()。 public class Test public static void main ( String [ ] args ) int count = 0 for( int i = 1 i < 5 i = 2) for( int j = 1 j< = 10 j = 3) count System .out .print (count ) _
- 以下程序调试结果 public class test { public static void main(String args[]) { int i=1, j=3; while (j>0) { j--; i++; } System.out.println(i); } }
- 中国大学MOOC: 以下程序的运行结果为( )。public class Test { public static void main(String args[ ]) { int i=0, j=2; do { ++i; j--; } while(j>0); System.out.println(i); }}
- 执行以下程序后,输出结果为 public class Test{ public static void main(String args[]) { int k ,f=1; for (k=2;k<5;k++) f = f * k; System.out.println(f); } }