嗨我的代码有问题我想输入数字。而不是在一个对话框中显示数字,而是显示每个对话框的数字,看看代码。
import javax.swing.JOptionPane;
public class Vector_number {
public static void main(String[] args) {
String x;
int i = 0;
int number;
int[] y;
y = new int[10];
x = JOptionPane.showInputDialog("Enter integer: ");
number = Integer.parseInt(x);
String myStr = " ";
while (number > 0) {
y[i] = number%10;
number = number/10;
i++;
}
for (i = i-1; i >= 0 ; i--) {
JOptionPane.showMessageDialog(null, y[i]+ " ",
"Weeeee", JOptionPane.PLAIN_MESSAGE);
System.exit(0);
}
}
}
答案 0 :(得分:0)
不确定。你可以在for循环中调用dialog。
另外,根本不要使用System.exit。
答案 1 :(得分:0)
首先构建字符串,然后显示对话框
StringBuilder str = new StringBuilder();
for (i = i-1; i >= 0 ; i--) {
str .append( y[i]).append(" ");
}
JOptionPane.showMessageDialog(null, str.toString, "Weeeee", JOptionPane.PLAIN_MESSAGE);
答案 2 :(得分:0)
不是显示“i”选项窗格,而是首先从阵列中收集所有数字,然后在单个窗格中显示它们。 试试
`for(i=i-1;i>=0;i--){
myStr+=" "+y[i];
}
JOptionPane.showMessageDialog(null, myStr,...`