While I_____ to the supermarket by bus, I_____ an old friend.
A. was going, met
B. went, met .
C. was going, was meeting.
第1题:
The word “went” contains two morphemes.()
第2题:
设int m;,与while(!m)等价的是下面哪个?()
A.while(m==0)
B.while(m!=0)
C.while(m==1)
D.while(m!=1)
第3题:
【单选题】程序段: int m,n; m=15,n=12; while(m!=n) { while(m>n)m-=n; while(m<n)n-=m; } printf("m=%dn",m); 最后输出的m值是:()
A.1
B.3
C.36
D.45
第4题:
A、round/ old/ rosewood
B、rosewood/ old/ round
C、old/ round/ rosewood
D、old/ rosewood/ round
第5题:
已知wire [31:0] bus;则下列说法真确的是 。
A.bus [31]是bus的最高有效位
B.bus [0]是bus的最高有效位
C.bus [31]是bus的最低有效位
D.bus [0]是bus的最低有效位
第6题:
若变量m已定义,以下程序段中的do-while循环次数是________ m=-1; do{ m=m*m;}while(!m);