苷类氰苷
参考答案:
皂苷,黄酮苷,强心苷。糖分子中的环状半缩醛的羟基和非糖类化合物分子中的羟基脱水缩合而成具有环状缩醛结构的化合物。具有毒性的一般为氰苷和皂苷。
使用VC++6.0打开考生文件夹下的源程序文件2.cpp,请实现函数fun(double a[],int len)的如下功能: (1)a[]是一个数组,长度为len。 (2)a[0]=0,a[1]=1。 (3)a[i+2]=a[i]+a[i+1]。 注意:不能修改函数的其他部分。 试题程序: #include<iostream> void fun(double a[],int len) void main() double a[20]; fun(a,20); for(int i=0;i<20;i++) std::cout<<a[i]<<’’; if(i%6==5) std::cout<<std::end1; return;