请阅读以下程序代码,输出结果正确的是()。
$a=1;
$temp=0;
while($a<=10){
if($a==8) break;
$temp+=$a; $a++;
}
echo $temp;
?>
$a=1;
$temp=0;
while($a<=10){
if($a==8) break;
$temp+=$a; $a++;
}
echo $temp;
?>
举一反三
- 请阅读以下程序代码,输出结果正确的是( )。<;?php$a=1;$temp=0;while($a<;=10){if($a==8) break;$temp+=$a; $a++;}echo $temp;?>; A: 0 B: 36 C: 28 D: 27
- There are ( ) basic paths for the following program.int FUN(int count, int flag){ int temp=0; while(count>0){ if(0==flag){ temp=count+100; } else{ if(1==flag) temp=temp+10; else temp=temp+20; } count--; } return temp;} A: 2 B: 3 C: 4 D: 4
- score是一个整数数组,有五个元素,已经正确初始化并赋值,仔细阅读下面代码,程序运行结果是() temp = score[0]; for (int index = 1;index < 5;index++) { if (score[index] < temp) { temp = score[index]; } }
- (4-3)写出以下程序运行结果。 public class Demo05 { public static void main(String[] args) { int temp = 0; int[][] arr = { { 3, 4, 5 }, { 7, 8, 2 }, { 1 }, { 6, 2, 8 } }; for (int[] list : arr) for (int x : list) { if(x>3) temp += list.length; } System.out.println(temp); } }
- temp=’this is a temped variable’;echo foo${temp}上述命令执行的结果为() A: Afoo B: Bfoo$temp C: Cfoo’this is a temped variable’ D: Dfoothis is a temped variable