简述介电测井曲线的用途。
参考答案:
可计算岩石孔隙中的含水饱和度;区别油水层;判断水淹层
Would you like to go to the concert with me? No, I would rather ___.
A.to stay at home
B.stay at home
C.staying at home
D.will be staying
如下程序声明了一个使用两个通用数据类型的模板类dataClass,其中构造函数用于初始化两个数据成员,成员函数show用于输出两个数据成员的数值。 #include<iostream> using namespace std; ______ T1; T2; public; dataClass(T1 aT2 b){i=a;j=b;} void show(){cout<<i<<“,”<<j<<‘\n’;} }; int main(){ dataClass<int,double>obl<10,0.23>; dataClass(char,char*)ob2(‘X’,”my data”); ob1.show(); ob2.show(); return 0; } 请将程序补充完整,使程序在运行时输出: 10,0.23 X,my data