The truth is I'm just learning and I do not even know how to start
Create a class called Automobile with two private variables distance and time. The program will have a method, which will return the calculation of the speed, for it use the following formula: v=d/t
(Where: v = speed, d = distance, t = time) . Implement the class and create an object and invoke the method.