fork download
  1. import java.util.Scanner;
  2. public class Main {
  3.  
  4. public static void main(String[] args) {
  5.  
  6. Scanner s = new Scanner(System.in);
  7.  
  8. System.out.println("Введите число");
  9. double x = s.nextDouble();
  10. System.out.println("Вы ввели " +x);
  11.  
  12. System.out.println("Введите слово");
  13. String y = s.nextLine();
  14. System.out.println("Вы ввели " +y);
  15.  
  16.  
  17.  
  18.  
  19.  
  20. }
  21. }
Success #stdin #stdout 0.17s 321344KB
stdin
14.88 ghdfghdg ff
stdout
Введите число
Вы ввели 14.88
Введите слово
Вы ввели  ghdfghdg ff