public static void Main()
Console.Write("Enter the name of the client ") ;
name = Console.ReadLine() ;
Console.Write("Enter the vehicle type: 1, 2, 3 or 4 ") ;
Vehicle_type = Convert.ToInt16(Console.ReadLine()) ;
Console.Write("Enter the kilometers elapsed") ;
KM = Convert.ToDouble(Console.ReadLine()) ;
Console.Write("Enter the number of days to rent ") ;
d = Convert.ToDouble(Console.ReadLine()) ;
Console.WriteLine("The total cost of elapsed kilometers is {0} USD, and the total cost of days is {1} USD" ,TKM, dr) ;
Console.WriteLine("The total of the compact vehicle is {0} USD " ,total ) ;
Console.WriteLine("Thank you for your purchase Mr/Ms " + name ) ;
Console.WriteLine("The total cost of elapsed kilometers is {0} USD, and the total cost of days is {1} USD" ,TKM, dr) ;
Console.WriteLine("The total of the Sedan vehicle is {0} USD " ,total) ;
Console.WriteLine("Thank you for your purchase Mr/Ms " + name ) ;
Console.WriteLine("The total cost of elapsed kilometers is {0} USD, and the total cost of days is {1} USD" ,TKM, dr) ;
Console.WriteLine("The total of the SUV vehicle is {0} USD " ,total) ;
Console.WriteLine("Thank you for your purchase Mr/Ms " + name ) ;
Console.WriteLine("The total cost of elapsed kilometers is {0} USD, and the total cost of days is {1} USD" ,TKM, dr) ;
Console.WriteLine("The total of the truck is {0} USD " ,total) ;
Console.WriteLine("Thank you for your purchase Mr/Ms " + name ) ;