During the 20th century, ______ , abundant conflicts in use demand, and an intensification
查看答案
阅读以下说明和C程序,将应填入(n)处的字句写在对应栏内。
【说明】
下面的程序按照以下规则输出给定名词的复数形式。
a.若名词以“y”结尾,则删除y并添加“ies”;
b.若名词以“s”、“ch”或“sh”结尾,则添加“es”;
c.其他所有情况,直接添加“s”。
【C程序】
include <stdio.h>
include <string.h>
char*plural(char *word)
{
int n;
char *pstr;
n=strlen(word); /*求给定单词的长度*/
pstr=(char*)malloc(n+3);/*申请给定单词的复数形式存储空间*/
if (!pstr||n<2)
return NULL;
strcpy(pstr,word); /*复制给定单词*/
if ((1))
{
pstr[n-1]='i';pstr[n] ='e';pstr[n+1]='s';(2);
}
else
if(pstr[n-1]=='s'| |pstr[n-1]=='h'&&((3)))
{
pstr[n]='e';pstr[n+1]='s';pstr[n+2]='\0';
}
else
{ pstr[n]='s';pstr[n+1]='\0';)
(4);
}
main()
{ int i; char *ps;
char wc[9][10]=
{"chair","dairy","boss","circus","fly","dog","church","clue","dish");
for(i = 0;i<9; i++) {
ps= (5) ;
printf("%s: %s\n",wc[i],ps); /*输出单词及其复数形式*/
free(ps); /*释放空间*/
}
system("pause");
}
With the service of Railteam, what could a traveler do if he fails to catch a transit train?
&8226;Read the letter below.
&8226;In most of the lines 34-45 there is one extra word. It is either grammatically incorrect or does not fit in with the meaning of the text. Some lines, however, are correct.
&8226;If a line is correct, write CORRECT on your Answer Sheet.
&8226;If there is an extra word in the line, write the extra word in CAPITAL LE'I-I'ERS on your Answer Sheet.
&8226;The exercise begins with two examples, (0) and (00).
I'm Sorry
Dear Customer
(0) Over the last two years Milair has been experienced unprecedented growth.
(00) Whilst we are delighted at the increasing popularity of our products, this suc-
(34) cess has brought with it some problems. Even though with
(35) over 450 trained customer service staff, our telephone answering standards
(36) have fallen down on a number of occasions, particularly Caring July and Au-
(37) gust. The vast majority of our customers have continued so to receive a good
(38) quality of service, but some have experienced by a service well short of
(39) their, and our, expectations. As a result, we are speeding up our recruitment
(40) program to have the more people available to take your calls. We are also
(41) making much greater use of automated telephone technology. As to Managing
(42) Director of Milair, I want to take up this opportunity to contact those of you
(43) who have been affected and for assure you that my colleagues and I are ded-
(44) icated to delivering the highest possible standard of service. I am confident in that
(45) the steps we are taking on will help up to do this and apologize for
any inconvenience caused.
Yours sincerely
(34)
You can put this together very quickly, using only your hands.