题目内容

We were clearly two people looking at the same painted wall and each declaring it different colours.

A. We were obviously very different in our opinions over the issue.
B. We were obviously having very different opinions as to the painting of the wall and each preferred a different colour.

查看答案
更多问题

...my preference is for greater involvement from her daddy so that my daughter understands a strong parental unit.

A. ...I prefer to be more involved with her daddy so that my daughter understands a strong parentalunit
B. .. I prefer my husband to be more involved with his daughter so that she understands a strongparental unit.

main() { int k=0; char c='A'; do{ switch(c++){ case 'A': k++;break; case 'B': k--;case 'C': k+=2;break; case 'D': k=k%2;contiue; case 'E': k=k+10;break; default: k=k/3; } k++;}while(c<'C') ; printf("k=%d\n",k); }

A. k=1
B. k=2
C. k=3
D. k=4

编写程序,输入百分制的学生成绩,输出A(90-100),B(80-89),C(70-79),D(60-69),E(60分以下)等级

以下程序段的运行结果是#include ”stdio.h”main(){charch1=’a’,ch2=’A’;switch (ch1){ case ’a’:switch (ch2){case ’A’: printf(”good!\n”); break;case ’B’: printf(”bad!\n”);break;}case ’b’: printf(”joke\n”);}}

答案查题题库