Listen to four people starting conversations. In each conversation decide where the speakers are making contact.[音频]Conversation 1:__________ A. At a conferenceConversation 2:__________ B. Over dinnerConversation 3:__________ C. In someone’s officeConversation 4:__________ D. On a training course
查看答案
课堂练习 2结合上下文,给下列词组中下划线的单词匹配合适的中文翻译。
课堂练习 1Match the following English phrases with their Chinese translations.
下列程序的输出结果是______。#include "stdio.h"void main(){ int i,a=0,b=0;for(i=1;i<10;i++){ if(i%2==0) {a++; continue;}b++;}printf("a=%d,b=%d",a,b); }
A. a=4,b=4
B. a=4,b=5
C. a=5,b=4
D. a=5,b=5
以下程序的运行结果是______。#include void main(){ int y=9;for( ; y>0;y--)if(y%3==0) printf("%d",--y); }
A. 741
B. 963
C. 852
D. 875421