public static void Main()
ShoppingCart sc = new ShoppingCart();
public class ShoppingCart
Console.WriteLine("What product would you like? Enter 0 to exit. (0|1|2|3) ");
product = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many would you like?");
total = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Product ID Invalid!!");
Console.WriteLine("Your total is: {0}",amount);