题目内容

If Nelson holds a dinner to treat David, then we can say Nelson is the ____?

A. host
B. guest
C. waiter

查看答案
更多问题

题号:38360设有: double x,y;则以下正确的输入语句是:

A. scanf("%lf,%lf",&x,&y);
B. scanf("%lf,%lf", x, y);
C. scanf("%d,%d",&x,&y);
D. scanf("%f,%f",&x,&y);

题号:38346C语言程序从( )开始执行。

A. 程序中的第一条语句
B. 程序中的最后一个函数
C. 程序中的第一个函数
D. 程序中的main函数

题号:38381在下面程序中,循环变量增值的表达式是:int i,sum=0;i=1;while(i<=100){sum=sum+i;i++;}printf("sum=%d\n",sum);

A. sum=0
B. i=1
C. i<100
D. i++

题号:38365以下程序段的输出结果是: int x; for(x=10;x>=1;x=x-2) { if(x%3==0) continue; printf("%4d",x ); }

A. 10 8 4 2 0
B. 以上都不对
C. 10 8 6 4 2
D. 10 8 4 2

答案查题题库