public Car(string name, int sp, int cc)
public int SetSpeed(int sp, int speed)
Console.Write("Car name: " +name);
Console.Write(" cc: " +cc);
Console.Write(" Speed: " +speed);
string a= " That's all!";
public static void Main()
Car c1= new Car ("toyota",0,1600);
Car c2= new Car ("audi",0,2000);
Car c3= new Car ("subaro",0, 1300);
Console.WriteLine(c1.PrintAll());
Console.WriteLine(c2.PrintAll());
Console.WriteLine(c3.PrintAll());