网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
单选题
The Romans used to sell _____ by auction.
A

spoilt goods

B

old-worn weapons

C

property taken from the enemy

D

spears


参考答案

参考解析
解析:
考察词义。文章第二段第二句:The Romans usually sold in this way the spoils taken in war,这里的spoils taken in the war,指的就是从战争中缴获的战利品。答案为C。
更多 “单选题The Romans used to sell _____ by auction.A spoilt goodsB old-worn weaponsC property taken from the enemyD spears” 相关考题
考题 The author mentions the old RomansA. to compare the old Romans with today' s people___________B. to give an exampleC. to show human beings in the past knew nothing betterD. to indicate human beings used to be bloodthirsty

考题 27. The 'word shelter in the reading means _________.A. a place to sell small dogsB. a place to keep homeless animalsC. a place to study animalsD. a place to sell books on pet care

考题 60 It seems ridiculous to the writer that_______________.A. people dive 300 metres into the seaB. expensive clothes sell better than cheap onesC. cheap cars don’t run as fast as expensive onesD. expensive watches with unnecessary functions still sell

考题 Harry: I hate history.Susan: I don't. (57) I'm reading about the Romans.

考题 Harry: (58) the people from Romania?Susan: No, stupid. The Romans as in 'Julius Cesar'. You know, people from ancient Rome.

考题 已知在文件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 100typedef 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);}

考题 Then your _____will be sold by auction. A stiffB staffC stuff

考题 ____ in Rome, do as the Romans do.A: AsB: WhenC: BecauseD: After

考题 已知在文件IN8.DAT中存有100个产品销售记录,每个产品销售记录由产品代码dm(字符型4位)、产品名称mc (字符型10位)、单价dj(整型)、数量sl(整型)、金额je(长整型)几部分组成。其中,金额=单价×数量。函数ReadDat()的功能是读取这100个销售记录并存入数组sell中。请编制函数SortDat(),其功能要求:按金额从小到大进行排列,若金额相同,则按产品代码从大到小进行排列,最终排列结果仍存入结构数组sell中,最后调用函数WriteDat()把结果输出到文件OUT8.DAT中。注意:部分源程序已给出。请勿改动主函数main()、读数据函数ReadDat()和输出数据函数WriteDat()的内容。[试题程序]include<stdio.h>include<memory.h>include<string.h>include<conio.h>include<stdlib.h>define MAX 100typedef struct{char dm[5] /*产品代码*/char mc[11] /*产品名称*/int dj; /*单价*/int sl; /*数量*/long je; /*金额*/}PRO;PRO sell[MAX];void ReadDat();void WriteDat();void SortDat(){}void main(){memset(sell,(),sizeOf(sell));ReadDat();SortDat();WriteDat();}void ReadDat(){FILE *fp;chnr str[80],ch[11];int i;fp={Open("IN8.DAT","r");for(i=0;i<100;i++){fgets(str,80,fp);memcpy(5ell[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]).sl=atoi(ch);sell[i].je=(long)sell[i].dj*sell[i].sl;}fclosc(fp);}void WriteDat(){FILE*fp;Int i;fp=fopen("OUT8.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);}

考题 已知在文件IN46.DAT中存有100个产品销售记录,每个产品销售记录由产品代码dm(字符型4位)、产品名称mc(字符型10位)、单价dj(整型)、数量sl(整型)、金过额je(长整型)几部分组成。其中,金额=单价×数量可计算得出。函数ReadDat()的功能是读取这100个销售记录并存入数组sell中。请编制函数SortDat(),其功能要求:按金额从大到小进行排列,若金额相同,则按产品代码从大到小进行排列,最终排列结果仍存入结构数组sell中,最后调用写函数WriteDat()把结果输出到文件 OUT46.DAT中。注意:部分源程序已给出。请勿改动主函数main()、读函数ReadDat()和写函数WriteDat()的内容。试题程序:include<stdio.h>include<mem.h>include<string.h>include<conio.h>include<stdlib.h>define MAX 100typedef struct{char dm[5];char mc[11];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[11];int i;fp=fopen("IN46.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].sl=atoi(ch);sell[i].je=(long)sell[i].dj*sell[i].sl;}fclose(fp);}void WriteDat(){FILE *fP;int i;fP=fopen("OUT46.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);}

考题 已知在文件IN. dat中存有100个产品销售记录,每个产品销售记录由产品代码code(字符型4位)、产品名称name(字符型10位)、单价uprice(整型)、数量amount(整型)、金额sum(长整型)5部分组成。其中:金额=单价×数量。函数Rdata()是读取这100个销售记录并存入结构数组sell中。请编写函数SortDat(),其功能要求:按金额从小到大进行排列,若金额相等,则按产品代码从小到大进行排列,最终排列结果仍存入结构数组sell中。最后调用函数Wdata(),把结果输出到OUT. dat文件中。注意:部分源程序已经给出。请勿改动主函数main()、读数据函数Rdata()和输出数据函数Wdata()的内容。include <stdio. h>include <string. h>include <conio. h>include <stdlib. h>define MAX 100typedef struct{ char code[5]; /* 产品代码 */char name[11]; /* 产品名称 */int uprice; /* 单价 */int amount; /* 数量 */long sum; /* 金额 */} PRO;PRO sell [MAX];void Rdata();void Wdata();void SortDat(){}void main (){ memset(sell, 0, sizeof(sell)Rdata();SortDat();Wdata();}void Rdata(){ FILE *fp;char str[80], ch[11];int i;fp = fopen("IN. dat", "r");for (i=0; i<100; i++){ fgets(str, 80, fp);memcpy(sell[i].code, str, 4);memcpy(sell[i].name, str+4, 10);memcpy(ch, str+14, 4);ch[4] = 0;sell[i].uprice = atoi(ch);memcpy(ch, str+18, 5);ch[5] = 0;sell[i]. amount = atoi(ch);sell[i].sum = (long)sell[i]. uprice * sell[i]. amount;}fclose(fp);}void Wdata(){ FILE *fp;int i;fp = fopen("OUT. dat", "w");for (i=0; i<100; i++){ printf("%s %s %4d %5d %5d\n", sell[i]. code, sell[i].name,sell[i].uprice, sell[i]. amount, sell[i]. sum);fprintf(fp, "%s %s %4d %5d %5d\n", sell[i]. code,sell[i]. name, sell[i]. uprice, sell[i]. amount, sell[i]. sum);}fclose(fp);}

考题 5.We can______ books _______bookstore(书店).A. sell ;toB. buy ;fromC. sell ;fromD. buy ;to

考题 They sell the sweater( )a discount of 30 percent. at

考题 Our statistics show that we consume all that we are capable of producing.A:waste B:buy C:use D:sell

考题 There were many different cultures in the ancient world,but the two that had the most influence?on European and American civilizations were the Greek and the Roman.Often these two eultures are?lumped together in our minds,as if they were really exactly alike.But that is not the case.In many?ways the Greeks and the Romans could not have been more different. The Greeks were truly democratic,often without a single leader but instead governed by a group?of men chosen by the people.The Romans were semi-democratic.They had a governing Senate,but?the political power was mostly or completely in the hands of a single emperor. Both cultures were great builders.But the construction interests of the two cultures were also?different.The Greeks tended to be more artistic.Their buildings were well constructed and they were?especially interested in temples,columns,and decorative forms.The Romans,on the other hand,were more engineers than artists.They concentrated their efforts on urban planning,well-functioning?water pipes,and the best roads. Only in cooking and eating habits are the two cultures really similar.Both peoples ate very well?indeed:lots of fish,fresh vegetables and fruits,healthy meals,holding at the same time long?discussions and tasting excellent wines. In fact,it would probably be fair to say that they both loved life in their warm, sea-oriented?climates,and they both lived a full life. Which of the following is TRUE?A.The Romans had more political awareness. B.The Romans had less political freedom and democracy. C.The Romans had more freedom to choose their leader. D.The Romans had fewer people elected into the government.

考题 共用题干 AuctionsAuctions are public sales of goods,conducted by an officially approved auctioneer. He or she asks the assembled crowd in the auction-room to make offers,or"bids",for the various items on sale.He encourages buyers to bid higher figures,and finally names the highest bidder as the buyer of the goods.This is called"knocking down"the goods,for the bidding ends when the auctioneer bangs a small hammer on a table at which he stands.This is often set on a raised platform called a rostrum.The ancient Romans probably invented sales by auction,and the English word comes from the Latin auction,meaning"increase".The Romans usually sold in this way the spoils taken in war; these sales were called"sbu hasta",meaning"under the spear",a spear being stuck in the ground as a signal for a crowd to gather. In the eighteenth and nineteenth centuries goods were often sold "by the candle",a short candle was lit by the auctioneer;and bids could be made while it stayed alight.An auction is usually advertised beforehand with full particulars of the articles to be sold and where and when they can be viewed by possible buyers.If the advertisement cannot give full details, catalogues are printed,and each group of goods to be sold together,called a"lot",is usually given a number. The auctioneer need not begin with Lot 1 and continue in numerical order. He may wait until he registers the fact that certain dealers are in the room and then produce the lots they are likely to be interested in.The auctioneer's services are paid for in the form of a percentage of the price the goods are sold for. The auctioneer therefore has a direct interest in pushing up the bidding as high as possible.Practically all goods whose qualities vary are sold by auction.Among these are coffee,hides, skins,wool,tea,cocoa,furs,spices,fruit and vegetables and wines.Auction sales are also usual for land and property,antique,furniture,pictures,rare books,old china and similar works of art. The auction rooms at Christie's and Sotheby's in London and New York are world famous.The Romans used to sell old worn-out weapons by auction.A:Right B:Wrong C:Not mentioned

考题 The Romans remained in control of Britain for nearly 400 years and they pulled out in().A306 ADB410 ADC446 ADD1066 AD

考题 The first known settlers of Britain were the()A、CeltsB、IberiansC、Beaker FolkD、Romans

考题 问答题Flea market can be found on almost every campus. Although some sell new products in these markets, most students go there to sell used articles, such as textbooks, test preparation materials, dictionaries, and CDs. This has aroused different reactions. Some view it as a meaningful method to dispose of things no longer useful, but some others, especially teachers, view it as a symbol of wasting. What is your opinion about getting rid of used things in this way? Write a composition of about 400 words on the following topic:My Opinion on Campus Flea MarketIn the first part of your writing you should present your thesis statement, and in the second part you should support the thesis statement with appropriate details. In the last part you should bring what you have written to a natural conclusion or a summary.  Marks will be awarded for content, organization, grammar and appropriateness. Failure to follow the above instructions may result in a loss of marks.

考题 单选题The key problem in dealing with returned plastic beverage containers is _____.A to sell them at a profitable priceB how to turn them into useful thingsC how to reduce their recycling costsD to lower the prices for used materials

考题 单选题Kiara's goal is to sell at least $150 worth of cookies. If each box of cookies sells for $5, and she has already sold 16 boxes of cookies, which of the following inequalities could be used to determine x, where x is how many more boxes of cookies she must sell to make her goal?A (16) ×5-x≤150B (16) ×5+x≥ 150C (16) ×5-x≥150D (16) ×5 + 5x≤ 150E (16) ×5 +5x≥ 150

考题 单选题According to the passage, dealers are different from brokers in thatA dealers neither buy nor sell securities themselves.B brokers neither buy nor sell securities themselves.C all of the above.

考题 问答题Directions:In this part, there is one passage followed by a summary. Read the passage carefully and complete the summary with the appropriate words from the passage. Remember to write the answers on the Answer Sheet.  Questions 1-5 are based on the following passage.  Cosmetics have been used throughout history. The ancient Greeks, the Egyptians, and the Romans all used various kinds of makeup. Some of these cosmetics were used to improve their appearance. Others were used to protect their skin. But in some cases, things used for makeup were dangerous, or even deadly!  Some of the first skin care treatments started in Egypt. In fact, Cleopatra was known to use them. She thought a bath in milk and honey left her skin silky smooth. Egyptians also developed some of the earliest sunscreens. They used oils and creams for protection against the sun and dry winds. Egyptian and other ancient cultures also used various powders on their skin for beauty. Egyptians used black kohl around their eyes. Romans put white chalk on their faces. And Indians painted red henna on their bodies.  Most of the ancient cosmetic powders, oils, and creams were harmless. But in the name of beauty, some people applied dangerous chemicals and poisons to their skin. During the Italian Renaissance, women wore white powder made of lead on their faces. Of course, doctors now know lead is like a poison for our bodies.  Also around the time of the Renaissance, women in Italy put drops of belladonna in their eyes. Belladonna is a very poisonous plant. The poison in the plant affects the nerves in the body. By putting belladonna drops in her eyes, a woman’s pupils would become very large. People thought this made her more beautiful. Actually, this is why the plant is called belladonna. In Italian, belladonna means “beautiful woman.”  When Elizabeth I was queen of England in the late 1500s, some rather dangerous cosmetics were also used by women there. Women were using rouge made with mercury. They were also using special hair dye made with lead and sulphur. The dye was designed to give people red hair, the same color as the queen’s hair. Over time, the dye made people’s hair fall out. Finally, women using this dye ended up bald, like the queen, and had to wear wigs.  Summary:  Although people have used cosmetics throughout history, not all of them have been safe. In fact, some of them have been quite  1 to people. For example, long ago in Italian  2 , people thought women with big pupils were beautiful. Therefore, in the  3 of beauty, women began to put  4 of belladonna in their eyes to make their pupils larger. Today we know belladonna is poisonous, and it can affect the  5 in the body.

考题 判断题Even the Romans knew that lavender could be used as medicine.A 对B 错

考题 单选题What do you think “florists” do?A They sell flowers.B They make bread.C They sell clothes for Mother’s Day and Father’s Day.

考题 单选题At first it looked as if the Romans would win because _____.A the Scots were not braveB the Roman army was so strongC the Scots did not have a good leaderD the Romans had the support from the Scottish

考题 单选题What does the shop sell?A ClothesB BooksC Food