为什么程序不接受字符串输入?

时间:2019-07-06 07:48:12

标签: java

我正在尝试将输入作为字符串。代码有什么问题?

package practice;

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();
        String s = scan.nextLine();
        // Write your code here.

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

我希望它接受输入作为字符串。它只需要int并加倍,然后打印输出。

0 个答案:

没有答案