fork(1) download
  1. import java.util.Scanner;
  2. public class Scaner {
  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.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:20: error: reached end of file while parsing
	}
	 ^
1 error
stdout
Standard output is empty