Code:
namespace Extra_Practice_Mid_Term
{
    class Program
    {
        static void Main(string[] args)
        { 
            Register GasCo = new Register();
            
            Console.WriteLine("Enter your credit card number");
            int credit = Convert.ToInt32(Console.ReadLine());
            Console.WriteLine("Choose one of the following grades of gas,");
...