英文:
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.
专注分享java语言的经验与见解,让所有开发者获益!
评论