铁路运输企业
参考答案:
铁路局,铁路分局及其他具有独产法人资格从事铁路运输经营的企业.
质量体系要素之一的资源应包括()。
A.材料
B.半成品
C.能源
D.人力资源
E.计算机软件
下面程序的输出结果是 【8】 。 #include <iostream> using namespace std; int d=1; fun(int p){ static int d = 5; d+ =p; cout<<d; return (d) ; } void main ( ) { int a =3; cout<<fun ( a + fun (d) )<<endl; }