装运货物要合理使用货车,车种要适合货种。
参考答案:对
简述提高知识直观效果的方法。
有以下程序:
#include<stdio.h>
int fun(int x,int y)
if(x==y)return(x);
else return((x+y)/2);
main()
int a=1,b=2,c=3;
printf("%d\n",fun(2*a,fun(b,c)));
程序运行后的输出结果是()。
A.2
B.3
C.4
D.5