【单选题】首次提出“面向对象”概念的计算机科学家是()。
【判断题】边际收益是指收益的变化与导致其变化的价格变化的比值。
【单选题】首次提出“面向对象”概念的计算机科学家是()。
【单选题】分析以下程序的运行结果( )。 include int func(int a,int b) { int c; c=a+b; return c; } void main() { int x=6,r; r=func(x,x+=2); printf(”%d”,r); }
【判断题】高处作业应设置可靠扶梯,作业人员应沿着扶梯上下,沿着立杆与栏杆攀登。( )
【单选题】分析以下程序的运行结果:( ) int func(int a , int b) { int temp=a; a=b;b=temp; } int main( ) { int x,y; x=10;y=20; func(x,y); printf("%d,%d",x,y); return 0; }
【单选题】倘若调大离心泵出口阀门,提高泵的输液量,会引起
D.
泵的效率只决定于泵的结构及泵的转速,与流量变化无关
【简答题】分析以下程序的运行结果( )。 #include"stdio.h" int func(int n) {
if(n==1)
return 1; else
return(n*func(n-1));
} main() {
int x; x=func(3); printf(”%d\n”,x);
}A. 5 B. 6 C. 7 D. 8
【简答题】分析以下程序的运行结果 int func(int n) { if (n==1) return 1; else return (n*func(n-1)); } int main() { int x; x=func(3); printf("%d\n",x); return 0; }