Advertisement
SenpaiZero

mainClass

Feb 19th, 2024
633
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. package asd;
  2.  
  3. public class mainClass {
  4.     public static void main(String[] args) {
  5.        
  6.         // Creating object for the class LabExer2
  7.         LabExer2 labExer2 = new LabExer2();
  8.        
  9.         //Calling the method inside the class LabExer2 using the object we made
  10.         labExer2.readInput();
  11.         labExer2.writeOutput();
  12.     }
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement