Advertisement
SenpaiZero

CarDemo

May 2nd, 2024
544
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1.  
  2. public class CarDemo {
  3.     public static void main(String[] args) {
  4.         // Creating 2 car objects using the parameter value of Model and Color enum
  5.         Car car1 = new Car(2014, Model.SUV, Color.RED);
  6.         Car car2 = new Car(2018, Model.SEDAN, Color.ORANGE);
  7.        
  8.         // Printing the 2 car object data
  9.         car1.print();
  10.         System.out.println(); // For space
  11.         car2.print();
  12.     }
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement