题目内容

幻灯机放映视图中,可以看到对幻灯机演示设置的各种放映效果。( )

A. 对
B. 错

查看答案
更多问题

【函数1.1说明】 函数strcpy(char*to,char*from)将字符串from复制到字符串to。 【函数1.1】 void strcpy(char*to,char*from) { while ( (1) );} 【函数1.2说明】 函数merge(int a[],int n,int b[],int m,int*c)是将两个从小到大有序数组a和b复制合并出一个有序整数序列c,其中形参n和m分别是数组a和b的元素个数。 【函数1.2】 void merge(int a[ ],int n,int b[ ] ,int m,int * c) { int i,j; for(i=j=0;i<n && j<m;) *c++=a[i] <b[j]a[i++]:b[j++]; while( (2) )*c++=a[i++]; while( (3) )*c++=b[j++]; } 【函数1.3说明】 递归函数sum(int a[],int n)的返回值是数组a[]的前n个元素之和。 【函数1.3】 int sum(int a[] ,int n) { if( n >0) return (4) ; else (5) ; }

On British Newspapers Besides the daily newspapers, there are a number of Sunday newspapers in Britain. Many of them are connected with the "dailies", though not run by the same editor and his members. The Sunday papers are larger than the daily papers and usually contain more articles concerned with comment (评论) and general information rather than news. The national daily and Sunday papers have the largest circulation(发行) in the world. Of the Sunday papers, the Observer and the Sunday Times are the best known. It is a regrettable fact that the number of magazines of a literary or political nature has dropped down since the war. This has probably been caused by the ever-wider use of radio and television. The most successful magazines are those published for women. Their covers are designed to catch the eye, and they certainly succeed in doing so! They offer their readers articles on cookery (烹饪法), fashion, needlework, and many other matters of women interest. They also provide advice to those in love, and adventures with handsome heroes. Some women’s magazines also include serious articles of more general interest. The visitor who looks at the magazines displayed in a large bookstall (书摊) which may be found in an important railway station will notice that there is a wide variety of technical or semitechnical(半专业的) books and magazines. There are magazines for the motorist, the farmer, the gardener, the nurse, and many others. There are many local and regional newspapers. It is common in Britain for a news agent(报刊经售人) to deliver (投递) the morning papers to his customers for a small extra payment, this service is usually performed by boys and girls who want to earn some pocket-money. Some Sunday newspapers may belong to the same publishing company but are not edited by the same group of people.

A. Right
B. Wrong
C. Not mentioned

【说明】 下面的程序是从命令行输入3个数传递到public static void main(String args[])方法中 (如java IsTriangle 3 4 5),并判断这3个数能否构成三角形的3条边,并显示相应的结果。请在程序的每条横线处填入适当的语句,使程序的功能完整。 注意:请勿改动main()主方法和其他已有的语句内容,仅在横线处填入适当的语句。 public class IsTriangle{ public static void main( String args[ ]){ int a[] =new (1) [args. (2) ]; for(int i=0;i<3; (3) ) { a[i]= (4) } if( (5) ) System. out. println(a[0] +","+a[1] +","+a[2]"能构成三角形的3条边"); else System. out. println(a[0] +","+a[1] +","+a[2]"不能构成三角形的3条边); } }

在某文件夹中存有文档WT02.DOC,其内容如下: 【文档开始】 黄金周 国家法定节假日调整方案出台之后,出现了一个比较难于理解的现象。此前,人们对黄金周大多持贬损的态度。不是吗每个黄金周过后,除了大把大把“数钞票”的部门,往往都是一片抱怨之声,到处人看人啦,排浪式消费的恶果啦,如此等等。 总之,人们历数乃至声讨黄金周的种种弊端,痛陈改革国人集中休假体制的必要。而现在,当还只是“五一”黄金周尝试着退出历史舞台之际,春节、国庆黄金周仍然保留不变时,人们就已经一反常态,表现得无限维护起来。 据“官方问卷”,超过七成的网友支持国家发改委的这一调整方案;而据“民间调查”,两天前就有过半网友反对取消“五一”黄金周,而且,反对的比例还在逐渐走高。 【文档结束】 按要求完成以下操作:新建文档WD02A.DOC,插入文件WT02.DOC的内容,全文设置为四号、楷体GB2312,存储为文件WD02A.DOC。 2.新建文档WD02B.DOC,插入文件WD02A.DOC的内容,全文为2倍行距,除标题段(黄金周)之外,其他各段加项目符号●,存储为文件WD02B.DOC。 3.在某文件夹中,存有文档WT02A.DOC,其内容如下: 【文档开始】 计算机设计精品课程 课时 学费 Photoshop入门到精通 120 2200元 Illustrator入门到精通 80 1000元 Flash入门到精通 100 2000元 美术设计基础课堂 30 500元 合计 【文档结束】 按要求完成以下操作:新建文档WD02C.DOC,插入文件WT02A.DOC的内容。在第2、 3列最后1行分别填入“课时”、“学费”的合计,存储为文件WD02C.DOC。 4.新建文档WD02D.DOC,插入文件WD02C.DOC的内容,并设置外边框1磅,表内线0.75磅,为表格标题行(即第1行)设置黄色底纹,存储为文件WD02D.DOC。

答案查题题库