public static void Main()
int customer = 7, bucket = 5, bottle = 8;
float buffet = 299, ice = 15, drink = 25;
Console.WriteLine("------------------------------------------------");
Console.WriteLine("Type\t\tUnit\t\tPrice\t\t\t Total");
Console.WriteLine("------------------------------------------------");
Console.WriteLine("Customer\t\t{0}\t\t{1}\t\t\t{2:N}",customer,buffet,customer*buffet);
Console.WriteLine("Ice\t\t\t {0}\t\t{1}\t\t\t{2,9:N}",bucket,ice,bucket*ice);
Console.WriteLine("Drink \t\t{0}\t\t{1}\t\t\t{2,9:N}",bottle,drink,bottle*drink);
Console.WriteLine("------------------------------------------------");
Console.WriteLine("Total price (No service charge)\t\t {0:N}",(customer*buffet)+(bucket*ice)+(bottle*drink));