0

私のテスター ファイルでは、ユーザーから 3 つの入力を受信しようとしていますが、受信した入力は 2 つだけで、プログラムがコードの in.nextLine() 行をスキップしているようです。これが私のコードです:

import java.util.Scanner;

public class IngredientTester
{
   public static void main(String[] args) {

        Scanner in = new Scanner(System.in);
        /*These 3 inputs work */
        System.out.println("Please enter Ingredient name.");
        String inputName = in.nextLine();
        System.out.println("Please enter Ingredient measurement type.");
        String inputType = in.nextLine();
        System.out.println("Please enter Ingredient amount");
        double inputAmount = in.nextDouble();

        Ingredient inputIngredient = new Ingredient(inputName,inputType,inputAmount);
        System.out.println(inputIngredient.getName() + "- " + inputIngredient.getAmount() + " " + inputIngredient.getMeasurement());

        System.out.println("Please enter Ingredient name.");
        inputName = in.nextLine();
                /* ^ the input above does not work, but the ones below do work */
        System.out.println("Please enter Ingredient measurement type.");
        inputType = in.nextLine();
        System.out.println("Please enter Ingredient amount");
        inputAmount = in.nextDouble();

        inputIngredient.setAmount(inputAmount); 
        inputIngredient.setName(inputName); 
        inputIngredient.setMeasurement(inputType);
        System.out.println(inputIngredient.getName() + "- " + inputIngredient.getAmount() + " " + inputIngredient.getMeasurement());
    }

}
4

1 に答える 1

1

問題は、あなたが使用していることです:

double inputAmount = in.nextDouble();

最初の入力金額を読み取るだけでなく、キャリッジ リターンを次のreadLineステートメントに渡します。

解決策は、最初にキャリッジ リターンを使用することです。

double inputAmount = Double.parseDouble(in.nextLine());
于 2012-08-24T22:59:12.747 に答える