take input of int and double but after that it can't take input for string..and directly give output..what is my mistake?

huangapple 未分类评论47阅读模式
英文:

take input of int and double but after that it can't take input for string..and directly give output..what is my mistake?

问题

以下是翻译好的部分:

import java.util.*;

public class Demo {

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

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

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

Below i gave you a program that take input of int and double but after that it can't take input for string..and directly give output..what is my mistake?

code

import java.util.*;

public class Demo {

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

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

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

答案1

得分: 0

它正运行完美。您需要先输入字符串值,然后是双精度数,最后是整数。您需要按照您使用的Scanner对象的顺序输入。

英文:

It's working perfectly. You need to first enter String value, then double and last int.
You need to enter in the sequence you have used the Scanner object.

huangapple
  • 本文由 发表于 2020年7月24日 02:48:57
  • 转载请务必保留本文链接:https://java.coder-hub.com/63061167.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定