1 回答
TA贡献2051条经验 获得超10个赞
您似乎明白,当第一个 while 循环完成时,str.charAt(x)将是一个空格,因此在第二个 while 循环中,您首先检查str.charAt(x+1),跳过空格。然而,在正文中,您仍在添加str.charAt(x),b这本来是一个空格。
while(str.charAt(x+1) !=(strSpc.charAt(0))){ // x + 1 here
b = b+str.charAt(x); // x here
x++;
}
你应该将其更改为:
while(str.charAt(x+1) !=(strSpc.charAt(0))){ // x + 1 here
b = b+str.charAt(x+1); // x + 1 here as well
x++;
}
第三个 for 循环也是如此。这次,它需要检查charAt(x+2)并追加charAt(x+2)到c,因为charAt(x+1)那时已经是一个空格了。
x = 0;最后但并非最不重要的一点是,您需要在外循环的每次迭代开始时重置for。
int x = 0; <---- move this....
String str = " ";
for(int i=0; i<loop;i++) {
<---- here
str = JOptionPane.showInputDialog(i+1 + ": ");
事实上,你所做的只是拆分str,可以通过以下方法完成split:
String[] splits = str.split(" ");
int a = Integer.parseInt(splits[0]);
int b = Integer.parseInt(splits[1]);
int c = Integer.parseInt(splits[2]);
a1.add(a);
b1.add(b);
c1.add(c);
添加回答
举报