问题 单项选择题

影响传染病流行过程的因素是()

A.自然因素

B.社会因素

C.自然因素和社会因素

D.病原体的毒力

E.病原体的侵袭力

答案

参考答案:C

问答题

已知在文件IN4.DAT中存有100个产品销售记录,每个产品销售记录由产品代码dm(字符型4位)、产品名称mc(字符型10位)、单价dj(整型)、数量s1(整型)、金额je(长整型)五部分组成。其中:金额=单价×数量。函数ReadDat()的功能是读取这100个销售记录并存入结构数组sell中。请编制函数SortDat(),其功能要求:按产品名称从大到小进行排列,若产品名称相同,则按金额从大到小进行排列,最终排列结果仍存入结构数组sell中,最后调用函数WriteDat()把结果输出到文件OUT4.DAT中。
注意:部分源程序已给出。请勿改动主函数main()、读数据函数ReadDat()和输出数据函数WriteDat()的内容。
[试题程序]
#Include
#include
#include
#include
#include
#define MAX 100
typedef struct
char dm[5]; /*产品代码*/
char mc[11]; /*产品名称*/
int dj; /*单价*/
int s1; /*数量*/
long je;/*金额*/
PRO;
PRO sell[MAX];
void ReadDat();
void WriteDat();
void SortDat()



void main()

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

void ReadDat()

FILE *fp;
char str[80],ch[11];
int i;
fp=open("IN4.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+18,5);ch[5]=0;
sell[i].s1=atoi(ch);
sell[i].je=(long)sell[i].dj*sell[i].s1;

fclose(fp);

void WriteDat(VOid)

FILE *fp;
int i;
fp=fopen("OUT4.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].s1,sell[i].je);
fclose(fp);

单项选择题

Addiction is such a harmful behavior, in fact, that evolution should have long ago weeded it out of the population: if it’s hard to drive safely under the influence, imagine trying to run from a saber-toothed tiger or catch a squirrel for lunch. And yet, says Dr. Nora Volkow, director of NIDA and a pioneer in the use of imaging to understand addiction, "the use of drugs has been recorded since the beginning of civilization. Humans in my view will always want to experiment with things to make them feel good."

That’s because drugs of abuse co-opt the very brain functions that allowed our distant ancestors to survive in a hostile world. Our minds are programmed to pay extra attention to what neurologists call salience—that is, special relevance. Threats, for example, are highly salient, which is why we instinctively try to get away from them. But so are food and sex because they help the individual and the species survive. Drugs of abuse capitalize on this ready-made programming. When exposed to drugs, our memory systems, reward circuits, decision making skills and conditioning kick in—salience in overdrive—to create an all consuming pattern of uncontrollable craving. "Some people have a genetic predisposition to addiction," says Volkow. "But because it involves these basic brain functions, everyone will become an addict if sufficiently exposed to drugs or alcohol."

That can go for nonchemical addictions as well. Behaviors, from gambling to shopping to sex, may start out as habits but slide into addictions. Sometimes there might be a behavior-specific root of the problem. Volkow’s research group, for example, has shown that pathologically obese people who are compulsive eaters exhibit hyperactivity in the areas of the brain that process food stimuli—including the mouth, lips and tongue. For them, activating these regions is like opening the floodgates to the pleasure center. Almost anything deeply enjoyable can turn into an addiction, though.

Of course, not everyone becomes an addict. That’s because we have other, more analytical regions that can evaluate consequences and override mere pleasure seeking. Brain imaging is showing exactly how that happens. Paulus, for example, looked at drug addicts enrolled in a VA hospital’s intensive four-week rehabilitation program. Those who were more likely to relapse in the first year after completing the program were also less able to complete tasks involving cognitive skills and less able to adjust to new rules quickly. This suggested that those patients might also be less adept at using analytical areas of the brain while performing decision-making tasks. Sure enough, brain scans showed that there were reduced levels of activation in the prefrontal cortex, where rational thought can override impulsive behavior. It’s impossible to say if the drugs might have damaged these abilities in the relapsers an effect rather than a cause of the chemical abuse—but the fact that the cognitive deficit existed in only some of the drug users suggests that there was something innate that was unique to them. To his surprise, Paulus found that 80% to 90% of the time, he could accurately predict: who would relapse within a year simply by examining the scans.

Another area of focus for researchers involves the brain’s reward system, powered largely by the neurotransmitter dopamine. Investigators are looking specifically at the family of dopamine receptors that populate nerve cells and bind to the compound. The hope is that if you can reduce the effect of the brain chemical that carries the pleasurable signal, you can loosen the drug’s hold.

Paulus could accurately predict the relapsers because()

A. the part of their brain controlling cognitive skills is less active

B. a four-week intensive rehabilitation program is not effective enough

C. he has the devices sophisticated enough to scan any brain damage

D. something innate to their brains prompt them to use drugs