题目内容

下列哪一个不是人工智能的研究领域( )

A. 机器证明
B. 模式识别
C. 人工生命
D. 编译原理

查看答案
更多问题

人工智能的定义是什么?

下列四个选项中,均是 C 语言关键字的选项是()

A. auto enum include
B. switch typedef continue
C. signed union scanf
D. if struct type

C 语言中 ,switch 后的括号内表达式的值可以是

A. 只能为整型
B. 只能为整型 ,字符型 ,枚举型
C. 只能为整型和字符型
D. 任何类型

# include int main(){int a = 4;switch(a > 5){case 0:printf("this is 0\n");break;case 1:printf("this is 1\n");break;case 2:printf("this is 2\n");break;default:printf("this is default\n");}return 0;}写出该程序的输出

答案查题题库