Hangman Console App

[code language=”csharp”] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Media; using static System.Console; /// <summary> /// # # # # # # # # # # # # # /// # Mark Hesser # /// # Jan 9, 2018 # /// # Hangman Console App # /// # # # # […]

Resort Price Console App

[code language=”csharp”] using System; using static System.Console; #region Credit /// <summary> /// # # # # # # # # # /// # Mark Hesser # /// # Jan 4, 2018 # /// # Resort Prices # /// # # # # # # # # # # # # # # # # # […]

Chat-a-While Console App

[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 # /// # # # # # # # # […]

Delivery Charges Console App

[code language=”csharp”] using System; using static System.Console; #region Credit /// <summary> /// # # # # # # # # # # # /// # Mark Hesser # /// # Jan 4, 2018 # /// # Delivery Charges # /// # # # # # # # # # # # # # # # […]

WebAddress Console App

[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 # /// […]

DisplayMultiplicationTable Console App

[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 […]

DailyTemps Console App

[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 # /// # DailyTemps # /// ##################################################################################################### /// # Write an application named DailyTemps that continuously prompts a user for a series # /// # of […]

Eggs Console App

[code language=”csharp”] # Mark Hesser # Dec 10, 17 # Eggs */ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static System.Console; namespace Eggs { class Program { static void Main(string[] args) { //Declarations bool programSelectError = false, Menu = true; int programSelect; ConsoleKeyInfo kb; while (Menu) { Clear(); Title = "Main […]

ProjectedRaises Console App

[code language=”csharp”] /* Mark Hesser * Dec 10, 17 * Projected Raises */ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ProjectedRaises { class Program { static void Main(string[] args) { //Declarations bool programSelectError = false, Menu = true; int programSelect; ConsoleKeyInfo kb; while (Menu) { Console.Clear(); Console.Title = "Main Menu"; //Main […]

Inches to Centimeters Console App

[code language=”csharp”] /* Mark Hesser * Dec 10, 17 * Inches to Centimeters */ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace InchesToCentimeters { class Inches { static void Main(string[] args) { Console.Title = "Inches to Centimeters"; //Declarations const double centimetersInAnInch = 2.54; double inches, centimeters; //Example Conversion inches = 3; centimeters […]