矿山压力
参考答案:
地下煤层开采以后,围岩发生变形和位移,同时围岩内的应力也发生了增大、减小、甚至改变了原有的性质。这种引起围岩位移的力和围岩体中变化后的应力。
药品管理法规定,国家实行药品不良反应
A.监测制度B.报告制度C.审查制度D.登记制度E.备案制度
阅读下面程序: #include <iostream.h> int fun2(int m) if(m%3==0) return 1; else return 0; void fun1(int m, int &s) int i; for (i=1; i<m; i++) if(fun2(i)) S=S*i; void main() int n=9, s=2; fun1(n, s); cout<<s<<end1; 该程序的运行结果是 【12】 。