Advertisement
brospresident

Untitled

Oct 11th, 2021
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. class Main {
  2. public static void main(String[] args) {
  3. Printer myPrinter = new Printer();
  4. myPrinter.print("Hello");
  5. }
  6. }
  7.  
  8. class Printer {
  9. public void print(String text) {
  10. System.out.println(text);
  11. }
  12. }
  13.  
  14. // Niciuna din clase nu poate sa fie publica deoarece am denumit fisierul Problema3.
  15. // Intr-un fisier nu pot sa fie 2 clase publice
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement