问题 单项选择题

以下何种疾病不会出现异常支气管呼吸音

A.大叶性肺炎实变期

B.空洞型肺结核

C.胸腔积液时发生的压迫性肺不张

D.肺脓肿

E.支气管狭窄

答案

参考答案:E

阅读理解

What is it that makes a house a home ? A home is a place of companionship with people in it who love each other , who are harmonious and closer inside with one another than they are outside with those in the workplace or with classmates at school . A home is a place of companionship that it’s difficult to leave. In a home there is love , sharing and appreciation , and the members help each other .

I have seen families on the street. But if they live , sleep , talk , and eat together , they are a family, even if they are poorly off. You don’t need a roof to make a home. The truly homeless are some of the rich people who build multi-million-dollar houses and are too busy to live in them . The truly homeless are those who have turned their home into a hotel lobby . The parents work. The children do wrong . They don’t talk and eat together every day . They rarely see each other . The truly homeless people are those with babysitters , caretakers , gardeners and maids. Parents are unaware , too busy making money outside the home that they don’t live in . This is another way of looking at the rich and the homeless . Who is to be pitied ?

Control of the computer and the Internet is also important to make a house into a home. If the computer is on all the time , the house turns into an office, even if everyone is at home . Many homes these days are just offices. Human communication has stopped . The computer eats up the time that one should be giving to others within the home . Using the computer moderately gives us time for gentleness , play and communication , not with a screen , but with a human being.

小题1:The purpose of the first paragraph is to _____________ .

A.tell us that where there is home there is love

B.tell us what people think home is

C.show the author’s concept of home

D.tell people how to have a happy home小题2:The underlined word those  in the second paragraph refers to _____________ .

A.people who build multi-million-dollar houses

B.people who have lost their family members

C.people who don’t spend time with the family

D.homeless families living on the street in America小题3:Which statement is Not True according to the passage ?

A.A home is a place where you are willing to stay .

B.Even the poorest person can have a happy home .

C.Computers and the Internet are important for a happy family.

D.Sometimes it’s the rich that should be pitied .小题4:Which of the following may serve as the best title of the passage ?

A.How to make a house a home

B.What makes a house a home

C.Who are homeless , the poor

D.What’s a home for

多项选择题

已知在文件IN61.DAT中存有100个产品销售记录,每个产品销售记录由产品代码dm(字符型4位)、产品名称mc(字符型10位)、单价dj (整型)、数量s1(整型)、金额je(长整型)几部分组成。其中,金额二单价X数量可计算得出。函数ReadDat()的功能是读取这100个销售记录并存入数组sell中。请编制函数 SortDat(),其功能要求:按金额从小到大进行排列,若金额相同,则按产品代码从大到小进行排列,最、终排列结果仍存入结构数组sell中,最后调用函数WriteDat()把结果输出到文件OUT61.DAT中。
注意:部分源程序己给出。
请勿改动主函数main()、读函数ReadDat()和写函数WriteDat()的内容。
试题程序:
#include<stdio.h>
#include<mem.h>
#include<string.h>
#include<conio.h>
#include<stdlib.h>
#define MAX 100
typedef struct

char dm[5];
char mc[ll];
int dj;
int sl;
long je;
PRO;
PRO sell [MAX];
void ReadDat();
void WriteDat();
void SortDat()


void main()

memset (sell, 0, sizeof (sell));
ReadDat ( );
SortDat ();
WriteDat ();

void ReadDat ()

FILE *fp;
char str[80],ch[ll];
int i;
fp=fopen ("IN61. DAT", "r");
for (i=0; i<100; i++)

fgets (str, 80, fp);
memcpy (sell [i] .dm, str, 4);
memcpy (sell [i] .mc, str+4,10);
memcpy(ch, str+14, 4);
ch[4]=0;
sell [i] .dj=atoi (ch);
memcpy (ch, str+l8, 5);
ch[5]=0;
sell [i] . sl=atoi (ch);
sell [i] . je= (long) sell [i] .dj*sell [i] . sl;

fclose (fp);
void WriteDat()

FILE *fp;
iht i;
fp=fopen ("OUT61. DAT", "w");
for (i=0; i<100;i++)

fprintf(fp,"%s %s %4d %5d %101d\n",sell[i] .dm, sell[i] .mc,
sell[i] .dj,sell[i] .sl, sell[i] .je);

fclose (fp);