我怎么能在java程序中读取一个字符串

时间:2018-05-06 22:55:48

标签: java stack-overflow

import java.util.Scanner;

public class Solution {

    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int i = scan.nextInt();
        String s = scan.next();
        double d = scan.nextDouble();

        // Write your code here.

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

我的代码中的问题是我在java中的新问题

2 个答案:

答案 0 :(得分:0)

问题出在这里:

String s = scan.next();

引入addtional行以跳过换行符:

String s = scan.next();
scan.nextLine(); /* add this */

将该行替换为:

String s = scan.nextLine();

答案 1 :(得分:0)

由于问题不明确,我猜你有字符串的问题。

这将读取,直到有空格。

String s = scan.next(); 

如果你想在空间考虑之后读取一个字符串:

String s = scan.nextLine();