问题 单项选择题

在公共场合演讲,有的人长篇大论,滔滔不绝;有的人则把自己的意思浓缩成一句话,而这句话犹如一粒沉甸甸的石子,在听众平静的心湖里激起层层波浪,让人称道与回味。1936年10月19日,在上海各界人士公祭鲁迅先生的大会上,我国著名新闻记者、政治家、社会活动家邹韬奋先生发表了仅33个字的演讲:“今天天色不早,我愿用一句话纪念先生:许多人是不战而屈,鲁迅先生是战而不屈”。 这段文字主要讲述的是( )。

A.简短的演讲,如邹韬奋的一句话演讲含义深刻,有着强烈的表达效果

B.一句“战而不屈”准确地勾勒出鲁迅先生的战斗风骨

C.一个“战”字包含着人们对鲁迅先生多少敬仰和赞誉之情

D.许多无耻的文人不仅“不战”,还要奴颜婢膝;而先生却是横眉冷对,铁骨铮铮

答案

参考答案:A

解析: “有的人则把自己的意思浓缩成一句话,而这句话犹如一粒沉甸甸的石子,在听众平静的心湖里激起层层波浪,让人称道与回味。”这句话是材料的中心句,邹韬奋的例子是这句话的例证。

单项选择题
问答题

本题程序的功能是定义一个简单的计算器,可以进行基本的四则运算。程序中布局了16个按钮用来表示数字0~9及运算符和点号,程序顶部的文本框用来显示运算数及结果。请将下述程序补充完整(注意:不得改动程序的结构,不得增行或删行)。
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class simple

public static void main (String[] args)

try

UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());

catch (Exception e)


JFrame frame = new CalculatorFrame();
frame.show();


class CalculatorPanel extends JPanel implements ActionListener

private JTextField display;
private JButton btn;
private double arg = 0;
private String op = "=";
private boolean start = true;
public CalculatorPanel()

setLayout(new BorderLayout());
display = new JTextField("0");
display.setEditable(false);
add(display,"North");
JPanel p = new JPanel();
p.setLayout(new GridLayout(4,4));
String buttons = "789/456"123-0.= +";
for (int i = 0; i < buttons.length(); i ++)

btn = new JButton(buttons.substring(i,i + 1));
p.add(btn);
______;

add(p,"Center");

public void actionPerformed(ActionEvent evt)

String s = evt.getActionCommand();
if (’0’< = s.charAt(0)&&s.charAt(0) <=’9’ ||s.equals("."))

if (start)
display.setText(s);
else
display.setText(display.getText() + s);
start = false;

else
if (start)

if (s.equals("-"))

display.setText(s);
start = false;

else
op = s;

else

double x =______;
calculate(x);
op = s;
start = true;



public void calculate(double n)

if (op.equals(" + "))
arg += n;
else
if(op.equals("-"))
arg - = n;
else
if(op.equals("*"))
arg *= n;
else
if(op.equals("/"))
arg /= n;
else
if(op.equals("="))
arg=n;
display.setText(""+ arg);


class CalculatorFrame extends Jframe

public CalculatorFrame()

setTitle("simple");
setSize(220,180);
addWindowListener(new WindowAdapter()
public void windowClosing(WindowEvent e)

System.exit(0);

);
Container contentPane=getContentPane();
contentPane.add(new CalculatorPanel());