问题 填空题

下面程序中函数fun的功能是:找出一维数组元素中的最大值和它所在的下标,并将最大值和其下标通过形参传回。数组元素中的值已在主函数中赋予。主函数中x是数组名,n是x中的数据个数,max存放最大值,index存放最大值所在元素的下标。请填空。 #include <stdlib.h> #include <sldio.h> void fun(int a[],int n, int * max,int *d) { int i; *max=a[0]; *d=0; for(i=0; 【15】 ;i++) if(*max< 【16】 ) {*max=a[i];*d=i;} } main() { int i, x[20], max, index, n=10; randomize(); for(i=0;i<n;i++) { x[i]=rand()%50;printf("%4d",x[i]);} printf("\n"); fun(x,n,&max.&index); printf("Max=%5d,Index=%4d\n",max,index); }

答案

参考答案:i<n a[i]

解析: 在main函数中,randomize是为了生成随机种子,以便在使用rand函数时产生不同的数。通过循环用rand函数产生10个随机数。在fun函数中,要在n个数中找最大值,所以 [15]处填写i<n,每次将当前最大值与数组中的某元素比较,[16]处填写a[i]。

填空题
阅读理解
阅读短文,完成表格,每空一词
We all need a healthy environment, but we produce waster every day and it does harm to our environment. Though we are young, we can still do something to help. In fact, even the simplest everyday activities can make a real difference to the environment. Here are some ideas for you to live a green life.
Remember these three words; reduce, reuse and recycle(减量、再使用和再循环).
Reduce means “use less”. Don’t waste things. This saves money and reduces pollution and waste going into the environment. Before we buy something new, think if it is really necessary or maybe the old one will be just as good! When we do buy things, choose local products if possible, and try not to buy too many things from abroad.
Reuse means “use again”. Use things for as long as possible. When we buy things, make sure that they last a long time. We should take care of them so that they will last, and we should repair them if we can instead of throwing them away and buying new ones. Don’t use a paper cup or a paper bag. It’s better to use a china cup and a lunch box because you can use them again.
Recycle means “change things into something else”. Although it takes energy to change something into something else, it’s better than throwing things away or burning them. Find out what can be recycled in your neighbourhood and take part in recycling programmes. We should also buy products made from recycled materials, such as recycled paper, to help save trees.
Title:   小题1:   to Live a Green Life
We produce waste every day and it is  小题2:    to us. We can do something to help.
Ideas
Does
Don’ts
To  小题3:    
Use less
* Try to save something
* Don’t buy too many things from foreign   小题4:  .
To reuse
Use   小题5:    
* Use things for us long as possible.
* Buy things that last long.
* Take care of things or  小题6:   the old things.
* Don’t use  小题7:   cups or bags.
To recycle
Change things into something    小题8:  
* Join in recycling programmes.
* Buy 小题9:    made from recycled materials.
Don’t   小题10:   things away or burn them.