为你找到 1000 条关于 C语言题目1 的结果
x、y、z被定义为int型变量,若从键盘给x、y、z输入数据,正确的输入语句是
表示关系X
假定int类型变量占用两个字节,其有定义:intx[10]={0,2,4};,则数组x在内存中所占字节数是
若a为int类型,且其值为3,则执行完表达式a+=a-=a*a后,a的值是
设有数组定义:chararray[]="China";则数组array所占的空间为
下列数据中属于字符串常量的是
char型常量在内存中存放的是
算术运算中,7/3的结果为
转义字符表示换行的含义为
putchar()函数可以向终端输出一个
若a=3,b=4,执行完a>b后,结果为
ReadingComprehension(90minutes)Directions:Thereare4passagesinthissection.Eachpassageisfollowedbysomequestionsorunfinishedstatements.ForeachofthemtherearefourchoicesmarkedA),B),C)andD).YoushoulddecideonthebestchoiceandmarkthecorrespondingletteronAnswerSheet.PassageOneQuestions1to5arebasedonthefollowingpassage.Althoughmanyofusmayfeelair-conditionersbringrelieffromhot,humidorpollutedoutsideair,theyposemanypotentialhealthhazards.Muchresearchhaslookedathowthemovementofairinsideaclosedenvironment---suchasanofficebuilding---canspreaddiseaseorexposepeopleinthebuildingtoharmfulchemicals.OneofthemorewidelypublicizeddangersisthatofLegionnaire’sdisease,whichwasfirstrecognizedinthe1970s.Thiswasfoundtohaveaffectedpeopleinbuildingswithair-conditioningsystemsinwhichwarmairpumpedoutofthesystem’coolingtowerswassomehowsuckedbackintotheairintake(通风口),inmostcasesduetopoordesign.Thewarmair,filledwithbacteria,wascombinedwithcooled,conditionedairandwasthencirculatedaroundvariouspartsofthebuilding.Studiesshowedthatevenpeopleoutsidesuchbuildingswereatriskiftheywalkedpastairexhaustpipes.Largeair-conditioningsystemsaddwatertotheairtheycirculatebymeansofhumidifiers(湿度调节器).Inoldersystems,thewaterusedforthisprocessiskeptinspecialreservoirs,thebottomsofwhichprovidebreedinggroundsforbacteriawhichcanfindtheirwayintotheventilation(通风)system.Therisktohumanhealthfromthissituationhasbeenhighlightedbythefactthattheimmunesystems(免疫系统)ofapproximatelyhalfofworkersinair-conditionedofficebuildingshavedevelopedtheabilitytofightofftheorganismsfoundatthebottomofsystemreservoirs.Butchemicalscalled“biocides”areaddedtoreservoirstomakethemgerm-free,andtheyaredangerousintheirownrightinsufficientquantities,astheyoftencontaincompoundsstronglylinkedtocancers.Finally,itshouldbepointedoutthattheartificialclimaticenvironmentcreatedbyair-conditionerscanalsoaffectus.Inanaturalenvironment,whetherindoororoutdoor,therearesmallvariationsintemperatureandhumidity.Indeed,thehumanbodyhaslongbeenaccustomedtothesenormalchanges.Inanair-conditionedlivingorworkingenvironment,however,bodytemperaturesremainwellunder37℃,ournormaltemperature.Thisleadstoaweakenedimmunesystemandthusgreaterexposuretodiseasessuchascoldsandflu.1.WhatdoweknowaboutLegionnaire'sdiseasefromthepassage?
ReadingComprehension(90minutes)Directions:Thereare4passagesinthissection.Eachpassageisfollowedbysomequestionsorunfinishedstatements.ForeachofthemtherearefourchoicesmarkedA),B),C)andD).YoushoulddecideonthebestchoiceandmarkthecorrespondingletteronAnswerSheet.PassageOneQuestions1to5arebasedonthefollowingpassage.Although many of us may feel air-conditioners bring relief from hot, humid or polluted outside air, they pose manypotential health hazards. Much research has looked at how the movement of air inside a closed environment---such as anoffice building---can spread disease or expose people in the building to harmful chemicals.One of the more widely publicized dangers is that of Legionnaire’s disease, which was first recognizedinthe 1970s. This was found to have affected people in buildings with air-conditioning systems in which warmair pumped out of the system’ cooling towers was somehow sucked back into the air intake (通风口),in mostcases due to poor design. The warm air, filled with bacteria,was combined with cooled, conditioned air andwas then circulated around various parts of the building. Studies showed that even people outside such buildings were at risk if they walked past air exhaust pipes.Large air-conditioning systems add water to the air they circulate by means of humidifiers(湿度调节器).Inolder systems, the water used for this process is kept in special reservoirs, the bottoms of which providebreedinggrounds for bacteria which can find their way into the ventilation (通风)system. The risk to human health from this situation has been highlighted by the fact that the immunesystems (免疫系统)of approximately half of workers in air-conditioned office buildings have developed the ability to fight off the organisms found at the bottom of system reservoirs. But chemicals called “biocides”are added to reservoirs to make them germ-free, and they are dangerous in their own right in sufficient quantities, as they often contain compounds strongly linked tocancers.Finally, it should be pointed out that the artificial climatic environment created by air-conditioners canalso affect us. In a natural environment, whether indoor or outdoor, there are small variations in temperature and humidity. Indeed, the human body has long been accustomed to these normal changes. In an air-conditioned living or workingenvironment, however, body temperatures remain well under37℃, our normal temperature. This leads to a weakened immune system and thus greater exposure to diseases such as colds and flu.1.What do we know about Legionnaire's disease from the passage?
当a=1、b=2、c=5、d=5时,执行下面的程序后,x的值是()。if(a<b)if(c<d)x=1;elseif(a<c)if(b<d)x=2;elsex=3;elsex=6;elsex=7;
1.C语言程序的基本单位是()。