在Java中使用nextLine方法

时间:2019-01-27 05:28:23

标签: java

我刚刚在HackerRank中为Java传递了一个问题,我不明白如何在scan.nextLine()之前添加String s = scan.nextLine()来打印出整个句子。在添加scan.nextLine()之前,它甚至没有提示我输入,而是跳过了通过的String s并进入打印。

import java.util.Scanner;

public class Solution {

    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);

        int i = scan.nextInt();
        double d = scan.nextDouble();
        scan.nextLine();
        String s = scan.nextLine();

        // Write your code here.

        System.out.println("String: " + s);
        System.out.println("Double: " + d);
        System.out.println("Int: " + i);
    }

0 个答案:

没有答案