关于复方氢氧化铝的描述哪一项是正确的()
A.抗酸作用较弱
B.不产生收敛作用
C.不引起便秘
D.不可与其他抗酸药合用
E.多与三硅酸镁合用
参考答案:E
The temple from the Tang Dynasty was destroyed in the earthquake.
A.dated
B.dating
C.having dated
D.to be dated
以下程序中函数huiwen 的功能是检查一个字符串是否是回文,当字符串是回文时,函数数返回字符串:yes!否则函数返回这符串:no!并在主函数中输出。所谓回文即正向与反向的拼写都一样,例如:adgda。请填空 #include <string.h> char*huiwen(char *str) char *p1,*p2; int i,t=0; pl=str; p2=______; for(i=0;i<=strlen(str)/2;i+*)if(*p1++!=*p2--)t=1;break; if(______) return("yes!"); else return(*no!"); main()char str[50]; printf("Input:"); scanf("%s",str); printf("%s\n",______);