在羟基蒽醌的红外光谱中,有1个羰基峰的化合物是
A.大黄素 B.大黄酚 C.大黄素甲醚D.茜草素 E.羟基茜草素
参考答案:E
按《铁路工程地质勘察规范》(TBl0012-2001),下列对岩质隧道进行围岩分级的确定方法中,( )不正确。
A.岩石坚硬程度及岩体完整程度是隧道围岩分级的基本因素
B.当隧道涌水量较大时,基本分级Ⅰ~Ⅴ级者应对应修正为Ⅱ~Ⅵ级
C.洞身埋藏较浅,当围岩为风化土层时应按风化层的基本分级考虑
D.存在高地应力时,所有围岩分级都要修正为更差的级别
请编写一个函数resort,该函数的功能是:能在一个数列中,对从指定位置开始的几个数,按相反顺序重新排列,并在主函数中输出新的数列。 注意:部分源程序已存在文件PROC4.cpp中。 请勿修改主函数和其他函数中的任何内容,仅在函数reson()的花括号中填写若干语句。 文件PROC4.cpp的内容如下: //PROC4.cpp #include<iostream> using namespace std; void resort(int array[],int where,int arrount); int main() int number[20],where, arrount,i;cout<<"input 20 numbers\n";for(i=0;i<20;i++) cin>>number[i];cout<<"how many do you want to sort:";cin>>arrount;cout<<"where do you want to start:";cin>>where;resort(number,where,arrount);cout<<"\n resorted array as follow:\n";for(i=0;i<20;i++) cout<<number[i];return 0; void resort(int array[ ],int where,int amount) /************/