public static void Main()
int quantity, cash, change;
Console.WriteLine("[CAR PARTS HUB]");
Console.WriteLine("Item Id: 01 | Item Name: TIRE | Price: ₱5000");
Console.WriteLine("Item Id: 02 | Item Name: MAGS | Price: ₱10000");
Console.WriteLine("Item Id: 03 | Item Name: AIR FILTER | Price: ₱1000");
Console.WriteLine("Item Id: 04 | Item Name: SPOILER | Price: ₱8000");
Console.WriteLine("Item Id: 05 | Item Name: MOMO STEERING WHEEL | Price: ₱5000");
Console.Write("Select Item Id: ");
choice = Console.ReadLine();
Console.WriteLine("[TIRE | Price: ₱5000]");
Console.Write("Quantity: ");
quantity = Int32.Parse(Console.ReadLine());
Console.WriteLine("Total:₱" + total);
Console.Write("Payment:₱");
cash = Int32.Parse(Console.ReadLine());
Console.WriteLine("Change:₱" + change);
Console.WriteLine("Not Enough Cash");
Console.WriteLine("[MAGS | Price: ₱10000]");
Console.Write("Quantity: ");
quantity = Int32.Parse(Console.ReadLine());
total = quantity * 10000;
Console.WriteLine("Total:₱" + total);
Console.Write("Payment:₱");
cash = Int32.Parse(Console.ReadLine());
Console.WriteLine("Change:₱" + change);
Console.WriteLine("Not Enough Cash");
Console.WriteLine("[AIR FILTER | ₱rice: P1000]");
Console.Write("Quantity: ");
quantity = Int32.Parse(Console.ReadLine());
Console.WriteLine("Total:₱" + total);
Console.Write("Payment:₱");
cash = Int32.Parse(Console.ReadLine());
Console.WriteLine("Change:₱" + change);
Console.WriteLine("Not Enough Cash");
Console.WriteLine("[SPOILER | ₱rice: P8000]");
Console.Write("Quantity: ");
quantity = Int32.Parse(Console.ReadLine());
Console.WriteLine("Total:₱" + total);
Console.Write("Payment: ");
cash = Int32.Parse(Console.ReadLine());
Console.WriteLine("Change:₱" + change);
Console.WriteLine("Not Enough Cash");
Console.WriteLine("[MOMO STEERING WHEEL | ₱rice: P5000]");
Console.Write("Quantity: ");
quantity = Int32.Parse(Console.ReadLine());
Console.WriteLine("Total:₱" + total);
Console.Write("Payment:₱");
cash = Int32.Parse(Console.ReadLine());
Console.WriteLine("Change:₱" + change);
Console.WriteLine("Not Enough Cash");
Console.WriteLine("You Enter the wrong Item ID!");
Console.Write("Enter 'P' if Paid to reset Or Enter any key to exit:");