我的任务是通过文本字段输入20个数字,然后使用while循环输出均值,中位数和总数。我应该能够自己弄清楚while循环,但是我无法通过文本字段将数字输入到数组中。请帮忙,这是我目前的代码:
import java.applet.Applet;
import java.awt.Graphics;
import java.awt.*;
import java.awt.event.*;
public class whileloopq extends Applet implements ActionListener
{
Label label;
TextField input;
int[] numArray = new int[20];
int num;
public void init ()
{
Label label = new Label("Enter numbers");
TextField input = new TextField(5);
add(label);
add(input);
input.addActionListener(this);
}
public void actionPerformed (ActionEvent ev)
{
int num = Integer.parseInt(input.getText());
int index = 0;
numArray[index] = num;
index++;
input.setText("");
}
public void paint (Graphics graf)
{
graf.drawString("Array" + numArray, 25, 85);
}
}
非常感谢任何帮助。
答案 0 :(得分:1)
(在假设这是家庭作业的情况下写下答案。)
您知道如何解析字符串中的整数,就像您使用Integer.parseInt
一样显示,但是您调用它来将整个20个字符解析为一个整数。你需要单独分析每个角色。
我建议使用for循环和String#substring将输入文本子串到几个长度为1的字符串中。
或者,您可以围绕空字符串拆分输入文本,然后遍历生成的数组(请注意,数组中的第一个字符串将为空),但另一种方法更可能是某个新的Java,所以你必须在这里使用你的判断。
答案 1 :(得分:0)
在actionPerformed()
中,您试图从类别input.setText("");
但在init()
中您没有初始化该字段,但已创建并添加到applet 本地变量
TextField input = new TextField(5);
所以类字段是窃取null
。将其更改为
input = new TextField(5);
答案 2 :(得分:0)
import java.awt.*;
public class frame4array extends Frame
{
Checkbox c1[];
TextField t1[];
int i;
frame4array(String p)
{
super(p);
c1=new Checkbox[2];
t1=new TextField[2];
for(i=0;i<2;i++)
{
t1[0]=new TextField();
t1[0].setBounds(200, 50, 150, 30);
t1[1]=new TextField();
t1[1].setBounds(200, 80, 150, 30);
c1[0]=new Checkbox("Singing");
c1[0].setBackground(Color.red);
c1[0].setBounds(430,200,120,40);
c1[1]=new Checkbox("Cricket",true);
}
for(i=0;i<2;i++)
{
add(t1[i]);
add(c1[i]);
}
setFont(new Font("Arial",Font.ITALIC,40));
}
public static void main(String s[])
{
frame4array f1=new frame4array("hello");
f1.setSize(600,500);
f1.setVisible(true);
}
}