可用于支气管咳喘、老年痰喘的非处方中成药是
A.百合固金丸B.止咳平喘糖浆C.咳喘宁糖浆D.固本咳喘片E.蛤蚧定喘胶囊
参考答案:C
图1为“甲、乙、丙、丁四个国家的人口增长状况图”,图2为“不同阶段的人口发展模式图”。读图回答问题。
图1中四个国家人口增长特点与图2人口增长阶段对应正确的是
A.甲—①
B.乙—②
C.丙—③
D.丁—④
下列给定的程序中,函数fun()的功能是:判断字符ch是否与str所指字符串中的某个字符相同;若相同,则什么也不做,若相同,则将其插在申的最后。 请改正程序中的错误,使它能得出正确的结果。 注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。 试题程序:#include <conio.h>#include <stdio.h>#include <string.h>/*************found**************/void fun (char str,char ch)while (*str &&*str !=ch) str++;/*************found**************/ if(*str==ch) str[0]=ch;/*************found**************/ str[1]=’0’; main()char s[81],c; clrscr(); printf("\nPlease enter a strzng : ");gets(s); printf("\n Please enter the character tosearch : "); c=getchar(); fun(s,c); printf("\nThe result is %s\n",s);