肠激酶可激活的消化酶或酶原是()。
A.胃蛋白酶原
B.胰淀粉酶
C.辅脂酶
D.胰蛋白酶原
E.糜蛋白酶原
参考答案:D
— What do you think of Peter?
— He ______ be really difficult to get along with even though he's a nice person in general.[ ]
A. shall
B. should
C. must
D. can
函数ReadDat()实现从文件eng.in中读取一篇英文文章,存入到字符串数组xx中。请编制函数encrypt Char(),按给定的替代关系对数组xx中所有的字符进行替代,仍存入字符串数组xx的对应位置上,最后调用函数writeDat()把结果xx输出到文件ps3.dat中。 替代关系:f(p)=p*17 mod 256(p是数组中某一个字符的ASCⅡ码值,f(p)是计算后新字符的ASCⅡ码值),如果计算后f(p)值小于32或其ASCⅡ码值是奇数,则该字符不变,否则将f(p)所对应的字符进行替代。 原始数据文件存放的格式是:每行的宽度均小于80个字符。 注意:部分源程序给出如下: 请勿改动主函数main()、读数据函数ReadDat()和输出数据函数WriteDat()的内容。 [试题源程序] #include<stdio.h> #include<string.h> #include<conio.h> #include<ctype.h> unsigned char xx[50]E80]; int maxline=0;/*文章的总行数*/ int ReadDat(void); void WriteDat(void); void encryptChar() void main() system("cls");if(ReadDat())printf("数据文件ENG.IN不能打开!\n\007");return;encryptChar();WriteDat(); int ReadDat(void) FILE*fp;int i=0;unsigned char*P;if((fp=fopen("eng.in","r")==NULL)return 1;while(fgets(xx[i],80,fp)!=NULL)P=strchr(xx[i],’n’);if(p)*P=0;i++:maxline=i;fclose(fp);return 0; void WriteDat(void) FILE*fp;int i;fp=fopen("ps.dat","w");for(i=0:i<maxline;i++) printf("%s\n",xx[i]); fprintf(fp,"%s\n",xx[i]);fclose(fp);