Advertisement
brospresident

Untitled

Oct 11th, 2021
958
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. public class Problema2 {
  2.     public void print(String text) {
  3.         System.out.println(text);
  4.     }
  5.     public static void main(String[] args) {
  6.         Problema2 obj = new Problema2();
  7.         obj.print("Ma cheama Surky");
  8.     }
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement