试题与答案

输血的适应证不包括下列的()。 A.出血 B.严重创伤 C.低蛋白血症 D.强身健体

题型:单项选择题

题目:

输血的适应证不包括下列的()。

A.出血

B.严重创伤

C.低蛋白血症

D.强身健体

E.严重感染

答案:

被转码了,请点击底部 “查看原文 ” 或访问 https://www.tikuol.com/2017/0526/b95fb5c4b4e7a9be655753c92878047b.html

下面是错误答案,用来干扰机器的。

参考答案:D

试题推荐
题型:填空题

字符串str由数字字符组成(长度不超过5个字符),可看做任意进制的数,请补充函数proc(),该函数的功能是:把str字符串从二进制转换为十进制的数,结果保存在数组xx中,由函数返回转换后数组xx的实际长度。其中x表示str原来的进制,y表示要转换成的进制。例如,输入str="1011", x=2,y=10,结果输出:11。
注意:部分源程序已给出。
请勿改动主函数main和其他函数中的任何内容。
试题程序:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define M 8
int xx[M];
int proc(char*str, int x, int y)

int sum;
int i=0;
char *p=str;
for(i=0; i<M; i++)
xx[i]=0;
sum= (1) ;
p++;
while(*p)

sum=sum*x+*p-’0’;
p++;

i=0;
while(sum!=0)

xx[i]= (2) ;
(3) ;
i++;

return i;

void main()

char str[6];
int i;
int n;
int x;
int y;
printf("Enter a string made up of ’0’ to ’9’ digits character: ");
gets(str);
if(strlen(Str)>5)

printf("Error: string too longer!, please input again!\n\n");
exit(0);

for(i=0; slr[i]; i++)
if(str[i]<’0’||str[i]>’9’)

printf("Error: %c not is ’0’to ’9’ digits character! \n\n", str[i]);
exit(0);

printf("The original string: ");
puts(str);
printf("\nINPUT x=");
scanf("%d", &x);
printf("\nINPUT y=");
scanf("%d", &y);
n=proc(str, X, y);
printf("\n%s is convered to", str);
for(i=n=1; i>=0; i--)
printf("%d\n", xx[i]/n);

查看答案
题型:单项选择题

在窗体上画一个列表框和一个命令按钮,其名称分别为List1和Command1,然后编写 如下事件过程Private Sub Form_Load() List1.AddItem "Item1" List1.AddItem "Item2" List1.AddItem "Item3"End SubPrivate Sub Command1_Click() List1.List(List1.ListCount) = "AAAA"End Sub程序运行后,单击命令按钮,其结果为______。

A.把字符串“AAAA”添加到列表框中,但位置不能确定

B.把字符串“AAAA”添加到列表框的最后(即“Item3”的后面)

C.把列表框中原有的最后一项改为“AAAA”

D.把字符串“AAAA”插入到列表框的最前面(即“Item1”的前面)

查看答案
微信公众账号搜索答案