Resort Price Console App
[code language=”csharp”] using System; using static System.Console; #region Credit /// <summary> /// # # # # # # # # # /// # Mark Hesser # /// # Jan 4, 2018 # /// # Resort Prices # /// # # # # # # # # # # # # # # # # # […]
[code language=”csharp”] using System; using static System.Console; #region Credit /// <summary> /// # # # # # # # # # /// # Mark Hesser # /// # Jan 4, 2018 # /// # Resort Prices # /// # # # # # # # # # # # # # # # # # […]
[code language=”csharp”] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static System.Console; #region Credit /// <summary> /// # # # # # # # # # /// # Mark Hesser # /// # Jan 4, 2018 # /// # Chat a While # /// # # # # # # # # […]
[code language=”csharp”] using System; using static System.Console; #region Credit /// <summary> /// # # # # # # # # # # # /// # Mark Hesser # /// # Jan 4, 2018 # /// # Delivery Charges # /// # # # # # # # # # # # # # # # […]
Delivery Charge Exercise Write a program called DeliveryCharges for the package delivery service in Exercise 4. The program should again use an array that holds the 10 zip codes of areas to which the company makes deliveries. Create a parallel array containing 10 delivery charges that differ for each zip code. Prompt a user to […]
[code language=”csharp”] using System; using static System.Console; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ArraysSearches { class Program { static void Main(string[] args) { int[] idNumbers = { 122, 167, 204, 219, 345 }; int x; string entryString; int entryId; Write("Enter an Employee ID "); entryString = ReadLine(); entryId = Convert.ToInt32(entryString); x = […]
[code language=”csharp”] using System; using static System.Console; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ArrayLoopsAndMore { class Program { static void Main(string[] args) { int[] validValues = { 101, 108, 201, 213, 266, 304, 311, 409, 411, 412 }; double[] prices = { 0.89, 1.23, 3.50, 0.69, 5.79, 3.19, 0.99, 0.89, 1.26, 8.00 […]
[code language=”csharp”] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static System.Console; /// <summary> /// ################# /// # Mark Hesser # /// # Dec 20, 2017 # /// # WebAddress # /// ############################################################################################# /// # Write a program named WebAddress that asks a user for a business name. Suggest a # /// […]
[code language=”csharp”] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static System.Console; /// <summary> /// ################################# /// # Mark Hesser # /// # Dec 20, 2017 # /// # DisplayMultiplicationTable # /// ######################################################################################### /// # Write an application named DisplayMultiplicationTable that displays a table of the # /// # products of every […]