题目内容

两次世界大战期间,英国在国外直接投资的比重逐渐超过美国而居世界首位。()

A. 对
B. 错

查看答案
更多问题

各国政府是当代国际技术开发和技术转让的主体与主要组织形式。()

A. 对
B. 错

写出下列程序运行结果:#include void main(){ int a=2;switch(a){ case 2:case 3:a++;case 4:a++;default:a+=15;}printf("a=%d\n",a);}

A. 15
B. 16
C. 19
D. 18

下列程序段中,能将变量x、y中值较大的数保存到变量a,值较小的数保存到变量b中的是

A. if(x>y)a=x;b=y;else a=y;b=x;
B. if(x>y){a=x;b=y;}else a=y;b=x;
C. if(x>y){a=x;b=y;}else(x D. if(x>y){a=x;b=y;}else{ a=y;b=x;}

下列程序运行结果第一行_________;第二行___________。#includeint main(){int a=0,b=2;switch(++a,a*b){case 1:printf("1");case 2:printf("2");case 3:printf("3\n");deault:printf("other\n");}return 0;}

答案查题题库