题目内容

运行下面程序时,若从键盘输入数据为"86",则输出结果是( )。#include int main( ){int t;scanf("%d",&t);if (t>=90)printf("A\n");else if (t>=80)printf("B\n");else if (t>=70)printf("C\n");else if (t>=60)printf("D\n");elseprintf("E\n");printf("OK\n");return 0;}

A. B
B OK
C. BOK
D. BCDEOK

查看答案
更多问题

如果结构变量s中的生日是“1984年11月11日”,下列对其生日的正确赋值是()。struct student{int no;char name[20];char sex;struct{int year;int month;int day;}birth;};struct student s;

A. year = 1984; month = 11; day = 11;
B. birth.year = 1984; birth.month = 11; birth.day = 11;
C. s.year = 1984; s.month = 11; s.day = 11;
D. s.birth.year = 1984; s.birth.month = 11; s.birth.day=11;

C 语言程序中可以对程序进行注释,注释部分必须用什么符号括起来?

A. '{' 和‘}'
B. '['和']'
C. '*/' 和 '/*'
D. '/*'和'*/'

C语言源程序的扩展名是( )。

A. .exe
B. .obj
C. .cpp
D. .c

定义int x=1,y=2;,表达式1.0+x/y的值是( )。

A. 0
B. 1
C. 1.0
D. 1.5

答案查题题库