2008年5月12日,四川汶川发生8.O级大地震.全国人民抗震救灾,众志成城.

题型:填空题

问题:

2008年5月12日,四川汶川发生8.O级大地震.全国人民抗震救灾,众志成城.

(1)这次地震波及面广,北京、上海等地均有震感.据图可知,震中位于北京的______方向.

(2)在救治伤员的过程中,若要给0型血的伤员输血,根据输血原则,应该输______型血.

(3)灾区需要大量的生活物资.抗灾抢险的直升飞机在距离地面10至50米的空中,往地面空投矿泉水、方便面等救援物品.矿泉水在空中下落的过程中,其重力势能______(选填“增大”、“减小”或“不变”)

(4)震后灾区要特别注意环境淆毒,防止疫情发生.次氯酸钠(NaClO)是灾区使用的消毒剂之一,它与水反应的化学方程式为:NaClO+H2O═NaOH+X,反应生成的x具有强杀菌作用,X的相对分子质量为______.

考点:质量守恒定律化学式的写法和意义
题型:填空题

(1)49gH2SO4的物质的量是      ,将其配制成200mL溶液,所得溶液的物质的量浓度为      ,其中含     个,该溶液能与标准状况下的氨气     L恰好完全反应生成(NH4)2SO4

(2)由硫酸钾、硫酸铝和硫酸组成的混合溶液,其PH=1,c(Al3+)="0.4mol/" L, c()="0.8" mol/ L, 则c(K+)为     

(3)将标准状况下a L HCl(g)溶于1000 g水中,得到盐酸的密度为bg/ cm3,则该盐酸的物质的量浓度是      

题型:填空题

高血糖危象是指糖尿病__________________、__________________

题型:填空题

男,78岁,发现颈部及腋窝数个肿大的包块,选择最可能诊断()

A.肾癌

B.肾转移瘤

C.肾淋巴瘤

D.肾上腺癌

E.肾恶性纤维组织细胞瘤

题型:填空题

对疑似乙型脑炎病例的确诊主要依靠

A.临床症状
B.流行病学调查
C.血常规化验结果
D.体征
E.血清学检查

题型:填空题

针对以下C语言程序,按要求回答问题。

已知link.c程序如下:

/*link.c程序对单向链表进行操作,首先建立一个单向链表,然后根据用户的选择可以对其进行插入节点、删除节点和链表反转操作*/

#include<stdio.h>

#include<stdlib.h>

typedef struet list_node*list_pointer; //定义链表指针

typedef struct list_node //定义链表结构

int date;

list_pointer link;

list node;

//用到的操作函数

1ist_pointer create(); //建立一个单向链表

vold insert(list_pointer*p_ptr,list_pointer node; //在node后加入一个新的节点

void delete_node(list_pointer*p_ptr,list_pointer trail,list_pointer node);

//删除前一个节点是trail的当前节点node

void print(list_pointer*p_ptr); //打印链表节点中的值

list_pointer invert(list_pointer lead); //反转链表

int main()

list_pointer ptr=NULL;

list_pointer node,trail;

list_pointer*p=&ptr;

int choose,location,i;

printf("you should creale a link first:\n");

//建立一个单向链表

ptr=create();/*ptr指向链表的第一个节点*/

print(ptr);

//根据用户的不同选择进行相应的操作:

printf("input number 0,you can quit the program\n");

printf("input number 1,you can insert a new node to link\n");

printf("input number 2,you can delete a node from the link\n");

printf("input number 3,you can invert the link\n");

printf("please input your choice\n");

scanf("&d",&choose);

while(choose!=0)

switch(choose)

case 1:

i=1;

while(i<location)

node=node->link;

insert(p,node);/*p为指向ptr的指针*/

print(ptr);

break;

case 2:

printf("you will delete a node from the link\n");

printf("please input the location of the node:\n");

scanf("&d,&location);

node=ptr;

if(location==1)

trail=NULL;

trail=ptr;

i=1;

while(i<location)

trail=trail->link;

i++;

node=trail->link;

delete_node(p,trail,node);

print(ptr);

brcak;

ease 3:

printf("you will invert the link\n");

ptr=invert(ptr);

print(ptr);

break;

default;

break;

return-1;

printf("please input your choiee\n");

seanf("&d",&choose);

printf("please input you choice\n");

scanf("&d",&choose);

retnrn 0;

//根据用户的输入数值建立一个新的单向链表;

list_pointer create()

int i,current,length;

list_pointer p1,p2,head;

prinff("please input the node number of the link:\n");

scanf("&d",&length);

printf("the nnmber of the link is:&d",length);

printf("please input the dais for tile link node:\n");

i=0;

p1=p2=(list_pointer)malloc(sizeof(list_node));

head=p1;

for(i=1;i<length;i++)

scanf("&d",&current);

p1->data=curren1:。 p2->link=p1;

p2=p1;

p1=(list_pointer)malloc(sizeof(list_node));

p2->link=NULL;

return head;

 

画出主函数main的控制流程图。

更多题库