public static void Main()
string type_of_car , brand,name;
double price_per_day = 0 , discount = 0 ,total_price=0,total_payment = 0,days, total_discount = 0;
Console.WriteLine("Customer Name :");
name = Console.ReadLine().ToUpper();
Console.WriteLine("Brand :" ) ;
brand = Console.ReadLine().ToUpper();
Console.WriteLine("type of car :" ) ;
type_of_car = Console.ReadLine().ToUpper();
Console.WriteLine("number of car rentals day :");
days= Convert.ToDouble(Console.ReadLine());
else if (brand == "axia")
else if (brand == "kancil")
else if (brand == "saga")
else if (brand == "bezza")
else if (brand == "vios")
else if (brand == "serena")
else if (brand == "velfire")
else if (brand == "alphard")
total_discount = ( price_per_day * days ) * discount;
total_price = (price_per_day * days);
total_payment =( total_price - total_discount );
Console.WriteLine("Customer name : " + name.ToUpper());
Console.WriteLine("type of car : " + (type_of_car + "-" + brand));
Console.WriteLine("Number of Car Reantal Days :" + days );
Console.WriteLine("total Price : " + total_price );
Console.WriteLine("total_discount :" + discount);
Console.WriteLine("total payment " + total_payment);