using System.Collections.Generic;
using System.Threading.Tasks;
static void Main(string[] args)
string[] zipcode = { "dibc221", "4563aa", "73yts", "2222q4" };
Console.WriteLine("enter a zip for delivery");
entryZip = Console.ReadLine();
for( x=0; x<zipcode.Length && !ZipFound; ++x)
if(entryZip == zipcode[0])
Console.WriteLine(" delivery to {0}", entryZip);
Console.WriteLine("no delivery to {0}", entryZip);