fork download
  1. import java.io.File;
  2. import java.io.FileNotFoundException;
  3. import java.util.Scanner;
  4.  
  5. public class Odczyt{
  6. public static void main(String[] args) throws FileNotFoundException{
  7. // prosze wstawic plik w odpowiednie miejsce i nadac mu odpowiednia nazwe!
  8. File file = new File("HZ.txt");
  9. Scanner in = new Scanner(file);
  10.  
  11. String zdanie = in.nextLine();
  12. System.out.println(zdanie);
  13. }
  14. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:5: error: class Odczyt is public, should be declared in a file named Odczyt.java
public class Odczyt{
       ^
1 error
stdout
Standard output is empty