请阅读以下程序代码,输出结果正确的是( )。<;?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
A: 0
B: 36
C: 28
D: 27
举一反三
- 请阅读以下程序代码,输出结果正确的是()。 <?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
- 下面程序的运行结果为。 def swap(list): temp=list[0] list[0]=list[1] list[1]=temp list=[1,2] swap(list) print(list)
- score是一个整数数组,有五个元素,已经正确初始化并赋值,仔细阅读下面代码,程序运行结果是() temp = score[0]; for (int index = 1;index < 5;index++) { if (score[index] < temp) { temp = score[index]; } }