经济周期研究者们提出( )。
A.两种劳动参与假说
B.一级劳动力参与假说
C.二级劳动力参与假说
D.三级劳动力参与假说
参考答案:A
下面程序的运行结果是( )。 #include <iostream.h> int x=5; int fun(int a) int c; c=x*a; return c; void main() int x=3,a=4; x=x+fun(a); cout<<"X="<<x<<endl;
A.x=15 B.x=17 C.x=23 D.x=25