fork download
  1. /*
  2.  * Aplikacja wypisuje na ekranie na standardowe wyjscie, klasa Hello implementuje to rozwiazanie
  3.  * @author HZembr01
  4.  */
  5. public class Hello {
  6. /*
  7. * program główny, przez parę najbliższych spotkań w nim tworzyć
  8. * będziemy całą logikę aplikacji
  9. */
  10. public static void main(String[] args){
  11. System.out.println("Witaj UKSW");
  12.  
  13. }
  14. }
  15.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:5: error: class Hello is public, should be declared in a file named Hello.java
public class Hello {
       ^
1 error
stdout
Standard output is empty