问题 问答题

编写函数fun(),它的功能是:求出1~1000之内能被7或11整除、但不能同时被7和11整除的所有整数并将它们放在a所指的数组中,通过n返回这些数的个数。
注意:部分源程序给出如下。
请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。
[试题源程序]
#include<conio.h>
#include <stdio.h>
void fun(int*a,int*n)


main()

int aa[1000],n,k;
clrscr();
fun(aa,&n);
for(k=0;k<n;k++)
if(k+1)%10==0)

printf("%5d",aa[k]);
printf("\n");

else
printf("%5d",aa[i]);

答案

参考答案:void fun(int*a,int*n)
{
int i,j=0;
for(i=1;i<=1000;i++)
if((i%7==0||i%11==0)&&i%77!=0)
a[j++]=i;
*n=j;
}

解析: 本题的关键是if条件语句及参数传递。本题的设计思路是:(1)利用循环遍历1到1000之内的整数;(2)利用if语句判断,把查找到的整数保存到形参数组a中;(3)把数组a中数组元素的个数赋值到形参指针n所指的内存。注意程序中的if语句的判断条件,本题是找出能被7或11整除但不能同时被7和11整除的所有整数。能同时被7和11整除的数一定能被77整除,且不能被7整除的数不一定就是能被7或11整除的数。所以可得出程序中的if语句。

选择题
阅读理解

阅读理解。

      Some strange,wi1d and wonderful stories colored the news in 2011:

      A Copenhagen(哥本哈根)bus company has put "love seats" on its vehicles for people looking

for a partner. " Even love at first sight is possible on the bus",said a spokesman to explain the two

seats on each bus that are covered in red cloth and a "love seat "sign .

     Shoppers at an international fair in Verona,Italy,found a cellphone-equipped golden coffin(棺材)

among the items on display. The phone will help" the dead" contact relatives if they have been buried

alive by mistake.

     A man in New York came up with a disarming way to set off his latest bank heist(盗窃),approaching

the clerks window  with a large bunch of flowers and handing over a hold-up note saying "give me the

money"!

     An Englishman who lost all his legs and arms in an electrical accident successfully swam across the

Channel, a challenge he had been preparing for two years. The whole cost is 400 dollars. 

     A set of artificial teeth made for British war-time prime minister Winston Churchill known as "the

teeth that saved the world "sold for nearly 18,OOO pounds(21,500 euros,24,OOO dollars)at auction. 

     A British woman caused an Internet hate campaign after she was caught on camera dumping(丢弃

)a cat in a rubbish bin. She was fined 250

pounds(280 euros,400 dollars) after admitting guilty.

     The BBC apologized completely and without any doubts after a radio presenter jokingly announced

that Queen Elizabeth II had died. 

     TWO Australian men who needed surgery after shooting each other in the bottoms during drinking

to see if it would hurt were charged 400 dollars separately.

1. Love seats put on each bus are intended for_________.

A. those who are expecting their love      

B. passengers who need help

C. young passengers                    

D. special couples

2. What is special about the coffin in the second news?

A. It is golden.            

B. It has many items. 

C. It has a cell phone.      

D. It can hold a person alive.

3. Who has to pay 400 dollars for his or her illegal act? 

A. An Englishman who crossed the Channel without legs and arms. 

B. The person who bought Winston Churchi1ls artificial teeth. 

C. A British Woman who dumped a cat in a rubbish bin.

D. Two Australian men who needed surgery.

4. The strange,wild and wonderful stories took place in_______ countries.

A. 4          

B. 5            

C. 6            

D. 7