Do you mind my turning off the light? ______. I'm reading the end of the story.
A. No, not at all
B. Of course not
C. I'd rather you didn't
D. Yes, please
第1题:
下面程序的输出结果为 【 】 。
include<iostream.h>
void main( )
{
int num=0,i=8;
do{
i--;
num ++;
}while(--i);
cout<<num<<end1;
}
第2题:
That book is well ____________ (值得) reading. You’d better read it.
worth
第3题:
第4题:
有以下程序main( ){ int i=0,s=0;do{ if(i%2) {i+ +; continue; } i++; s+=i;}while(i<7)cout<<s<<end1;}执行后输出结果是
A.16
B.12
C.28
D.21
第5题:
第6题:
循环语句WHILE,DO后的m和END后的m,标号值为任意阿拉伯数字。