六、程序设计题(本大题共2小题,每小题6分,共1 2分)
37. 请编写方法int[]cubeArray(int[]a),返回一个新数组b,数组b的长度与参数数组的长度相同,其元素的值是参数数组对应各元素值的立方。
38. 小应用程序设置一个文本区、一个文本框和两个按钮。用户在文本区中输入整数序列,单击求和按钮,程序对文本区中的整数序列进行求和,并在文本框中输出计算结果。单击第二个按钮,清除文本区和文本框中内容。
注:这里是给定程序的部分代码,你要编写的是actionPerformed(ActionEvent e)方法。
import java.util. *;. . . . . . . . .
public class Test3 8 extends Applet implements ActionListener {
JTextArea textA; JTextField textF; JButton b1,b2;
public void init() {
textA=new JTextArea("",5,10);
textF=new JTextField("",10);
b1=new JButton("求和");b2=new JButton("重新开始");
b1. addActionListener(this);b2. addActionListener(this);
add(textA);add(textF);add(b1);add(b2);
……..
}
public void actionPerformed(ActionEvent e){
//请在以下位置编写代码
}
}