问题 写作题

书面表达(满分25分)

请你根据以下图表和提示,用英语写一篇关于我国手机拥有量变化的报道,并阐述手机给人们生活所带来的利与弊。

1.方便,随时随地联系;

2.许多功能满足不同要求,如发短信、上网等;

3.接到打错的电话并为之付费;

4.电磁辐射(radiation)有害健康。

注意:1. 词数:100左右;    

2.开头已给出(不计入总词数)。

As can be seen from the chart, great changes have been taking place in the ownership of mobile phones in China.

­­­­­­­­­­­­­

___________________________________________________________________________

___________________________________________________________________________

答案

As can be seen from the chart, great changes have been taking place in the ownership of mobile phones in china. At the end of 2002, there were 25 million mobile users, but two years later, the number has reached up to 35 million.

People have found mobile phones very convenient. They can get in touch with each other whenever they like and wherever they are. There are many different functions for different needs, such as sending short messages and surfing the Internet. However, it may also bring us more trouble. For example, you will have to pay for a wrong dialing, and the radiation from the phone may do harm to our health. In spite of this, the number of people having mobile phones is still increasing greatly.

问答题

以下程序中,当用户单击“移动”按钮以后,就可以使用方向键控制屏幕上句子的移动,单击“停止”按钮,则句子不再随着方向键移动。运行结果如下图所示


注意:请勿改动其他已有语句内容,仅在横线处填入适当语句。
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class Example2_8 extends Applet implements KeyListener

public void keyTyped(KeyEvent e)
public void keyReleased(KeyEvent e)
Button button;
Button stopButton;
Label out;
int x,y;
public void _______ ()

button = new Button("移动");
button.addActionListener(new AddMoveListener(this));
stopButton = new Button("停止移动");
stopButton.addActionListener(new RemoveListener(this));
stopButton.setEnabled(false);
out = new nabel("按下按钮以后我可以随方向键移动");
add(button);
add(stopButton);
add (out);

public void start()

super, start ();

public void keyPressed(KeyEvent e)

x=out.getBounds().x;
y=out.getBounds().y;
if(e.getKeyCode()==KeyEvent.VK_UP)

y=y-2;
if(y<=0) y=0;
out. setLocation (x, y);

else if(e.getKeyCode()==KeyEvent.VK_DOWN)

y=y+2;
if (y>=300) y=300;
out. setLocation (x, y);

else if(e.getKeyCode()==KeyEvent.VK_LEFT)

x=x-2;
if(x<=0) x=0;
out. setLocation (x, y);

else if(e.getKeyCode()==KeyEvent.VK_RiGHT)

x=x+2;
if(x>=300) x=300;
out. setLocation (x, y);


class AddMoveListener implements ActionListener

Example2_8 lis;
public AddMoveListener(Example2_8 lis)

this.lis = lis;

public void actionPerformed(ActionEvent e)

button. _________(lis);
stopButton, setEnabled (true);


class RemoveListener implements ActionListener

Example2_8 lis;
public RemoveListener(Example2_8 lis)

this.lis = lis;

public void actionPerformed(ActionEvent e)

button, removeKeyListener (lis);
stopButton.setEnabled(false);



Example2_8. html
<HTML>
<HEAD>
<TITLE> Example2_8</TITLE>
</HEAD>
<BODY>
<APPLET CODE="Example2_8.class"WIDTH=400 HEIGHT=500>
</APPLET>
</BODY>
</HTML>

单项选择题