public Car(string make, string model, int year, int speed)
public Car(string make, string model, int year)
Console.WriteLine(Year + " " + Make + " " + Model + " is going " + Speed + " MPH.");
public static void Main()
Car car1 = new Car("Ford", "Focus", 2010, car1Speed);
Car car2 = new Car("Chevy", "Cruze", 2018, car2Speed);
for (int i = 0; i < 60; i++)
car2Speed = car2.SpeedUp();
car1Speed = car1.SpeedUp();
car1Speed = car1.SlowDown();
car2Speed = car2.SlowDown();