以下是某种遗传病的系谱图(设该病受一对基因A、a控制)。据图回答:
Ⅱ5的基因型可能为(),其为杂合子的概率是()
参考答案:AA或Aa2/3
一同学拿着底部穿孔、每秒滴两滴水的饮料瓶测试自己的行走速度(如图7所
示)。测出地下各水迹间的距离分别为SAB=100.1cm、SBC=121.4cm,SCD=142.9cm,SDE=164.2cm。分析地下的水迹可知该同学在AE段做 运动,经过C点时的速度为 m/s。
请补充函数fun(),该函数的功能是:返回字符数组中指定子符的个数,指定字符从键盘输入。 注意:部分源程序给出如下。 请勿改动主函数main和其他函数中的任何内容,仅在函数fun()的横线上填入所编写的若干表达式或语句。 试题程序: #include <stdio.h> #define N 80 int fun (char s[],char ch) int i=0, n=0; while( 【1】 ) if( 【2】 ) n++;i++; 【3】 ; main ( ) int n;char str[N], ch;clrscr ();printf ("\nInput a string: \n");gets (str);printf ("\nInput a charactor: \n" ;scanf ("%c", &ch);n=fun (str, ch);printf("\nnumber of %c:%d", ch, n);