public string streetCred;
public car(int d, double p, string s)
public static void Main()
car newcar = new car (45, 45.5, "very reliable");
Console.WriteLine("The car has the following doors: " + newcar.doors);
Console.WriteLine("The car has the following price: " + newcar.price);
Console.WriteLine("The car has the following street cred: " + newcar.streetCred);