Advertisement
Guest User

Exer

a guest
Dec 8th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package prelimexer1;
  2. public class PrelimExer1 {
  3. public static void main(String[] args) {
  4. penLn("Gorgonio Magalpok");
  5. pen("BSIT");
  6. }
  7. static void penLn(String txt){
  8. System.out.println(txt);
  9. }
  10. static void pen(String txt){
  11. System.out.print(txt);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement