采用本章设计的语义子程序,源程序:while ( i < 10 ) { b = b + i i = i + 1}的翻译结果是:label L1t1 = i < 10ifz t1 goto L2t2 = b + ib = t2t3 = i + 1i = t3goto L1label L2
A: 正确
B: 错误
A: 正确
B: 错误
举一反三
- 采用本章设计的语义子程序,源程序:while ( i < 10 ) { b = b + i i = i + 1}的翻译结果是:label L1ifz i < 10 goto L2t1 = b + ib = t1t2 = i + 1i = t2goto L1label L2 A: 正确 B: 错误
- 下列程序段的执行结果为_____。 Dim M(10),N(10) I=3 for T=1 To 5 M(T)=T N(I)=2*I+T Next T print N(I);M(I)
- #include <;stdio.h>;int main( ){ int i,t; t=1; i=2; while(i<;=5) { t=t*i; i=i+1; } printf("%d\n",t); return 0;} 程序的运行结果是: 。
- 以下程序的运行结果为( )。#include <;stdio.h>;int main( ){int i,t;t=1;i=2;while(i<;=5){t=t*i;i=i+1;}printf("%d\n",t);return 0;}
- 下列程序段的执行结果为_____。 Dim M(10),N(10) I=3 for T=1 To 5 M(T)=T N(I)=2*I+T Next T print N(I);M(I) A: 3 11 B: 3 15 C: 11 3 D: 15 3