发现学习
参考答案:所谓发现学习,就是通过学习者的独立学习,独立思考,自行发现知识,掌握原理原则。发现,并不局限于寻求人类尚未知晓的事物。
在分子结构中含有硝基乙烯二胺的药物
A.氯雷他定B.富马酸酮替芬C.盐酸雷尼替丁D.奥美拉唑E.西咪替丁
下列给定函数中,函数fun()的功能是:统计字符串中各元音字母(即A,E,I,O,U)的个数。注意:字母不分大小写。例如,输入THIs is a boot,则应输出是1 0 2 2 0。 请改正程序中的错误,使它能得出正确的结果。 注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。 试题程序: #include <conio.h> #include <stdio.h> /*************found**************/ fun(char *s, int num[5]) int k, i=5; for(k=0;k<i;k++) /*************found**************/num [i]=0; for(;*s;s++) i=-l; /*************found**************/ switch(s)case ’a’: case ’A’:i=0;break;case ’e’: case ’E’:i=1;break;case ’i’: case ’I’:i=2;break;case ’o’: case ’O’:i=3;break;case ’u’: case ’U’:i=4;break; if(i>=0) num[i]++; main ( ) char s1[81]; int num1[5], i; clrscr (); printf("\nPlease enter a string: "); gets (s1); fun(s1, num1); for(i=0;i<5;i++) printf("%d",num1[i]); printf ("\n");