上颌第二磨牙近中颊根颊舌向双根管者约为
A.18%B.38%C.46%D.60%E.86%
参考答案:B
以下个体的后代肯定不能表现显性性状的是[ ]
A.显性个体自交
B.隐性个体自交
C.显性个体与隐性个体杂交
D.显性个体与显性个体杂交
下列给定程序中,函数fun()的作用是:将字符串tt中的小写字母都改为对应的大写字母,其他字符不变。例如,若输入“edS,dAd”,则输出“EDS,DAD”。 请改正程序中的错误,使它能得到正确结果。 注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。 试题程序: #include <stdio.h> #include <string.h> #include <conio.h> /*************found*************/ char fun(char tt[ ]) int i; for(i=0;tt[i];i++) /*************found*************/if((tt[i]>=’A’)&&(tt[i]<=’Z’))tt[i]-=32; return(tt); main() int i; char tt[81]; clrscr(); printf("\nPlease enter a string:"); gets(tt); printf("\nThe result string is:/n%s",fun(tt));