心理学成为一门独立学科的时间标志是()
A.1798年
B.1789年
C.1897年
D.1879年
E.1914年
参考答案:D
My morning ____ includes jogging in the park and reading newspapers over breakfast.
A.ambition
B.target
C.desire
D.routine
下面程序由两个源程序文件:t4.h和t4.c组成,程序编译运行结果是______。t4.h的源程序为: #define N 10 #define f2(x)(x*N) t4.c的源程序为: #include<stdio.h> #define M 8 #define f(x)((x)*M) #include"t4.h" main() int i,j; i=f(1+1);j=f2(1+1); printf("%d%d\n",i,j);