加速图形端口AGP是为高性能图形和视频支持而设计的一种专用总线。AGP 1×模式的数据传输率为266.6MB/s,AGP2×模式的数据传输率为 【9】 。
参考答案:对等
下列说法正确的是()
A.敏感性、特异性和决定值有关
B.决定值偏低,敏感性增加,特异性降低
C.决定值偏高,敏感性降低,特异性增加
D.决定值偏低,敏感性降低,特异性增加
E.决定值偏高,敏感性增加,特异性降低
下列给定的程序中,函数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 to search : ");c=getchar();fun(s,c);printf("\nThe result is %s\n",s); }