14前面的一个数是( ),后面的一个数是( )。
13;15
适用于情况复杂的大、中城市的燃气管网系统的是(),其系统复杂,投资大。
A.一级管网系统
B.二级管网系统
C.三级管网系统
D.混合管网系统
下面程序的输出结果是( )。 #include <iostream> using namespace std; int fun (int, int); //fun ( ) 函数的说明 void main( ) int a =48,b =36,c;c = fun(a,B) ;cout<<c; int fun(int u,int v) int w; while (v)w=u%v;u =v;v =w;return u;
A.24
B.12
C.48
D.36