我需要接受用户的String
输入和double
输入并将它们存储到两个并行数组中以创建购物车。
我已经将两个数组初始化为用户确定的大小Amount
,并创建了一个 for 循环来运行输入并将值存储在两个数组中,并设置了一个额外的input.nextLine()
,因此代码将吞下在循环结束时创建的新行。到目前为止,这是我的代码,
import java.util.*;
import java.io.*;
public class Item
{
public static void main(String[] args)
throws java.io.IOException
{
int amount;
String nextItem,I;
Scanner input = new Scanner(System.in);
System.out.println("Please enter the number of items you would like to add:");
amount = input.nextInt();
String cart[] = new String[amount];
double price[] = new double[amount];
for(int i = 0; i<amount; i++)
{
System.out.println("Please enter the name of an item:");
cart[i] = input.nextLine();
System.out.println("Price?");
price[i] = input.nextDouble();
input.nextLine();
}
}
}
但是,当程序运行循环时,它会运行两个System.out.println
命令跳过第一个input.nextLine()
,并且只接受整数输入。