Library Fines Console App

[code language=”csharp”] using System; using static System.Console; /// <summary> /// # # # # # # # # # # # /// # Mark Hesser # /// # Jan 18. 18 # /// # Library Fines # /// # # # # # # # # # # # # # # # # # […]

Fortune Teller Console App

[code language=”csharp”] using System; using static System.Console; /// <summary> /// # # # # # # # # # # # /// # Mark Hesser # /// # Jan 18, 18 # /// # Fortune Teller # /// # # # # # # # # # # # # # # # # # […]

Painting Rooms Console App

[code language=”csharp”] using System; using static System.Console; /// <summary> /// # # # # # # # # # # # # # /// # Mark Hesser # /// # Jan 18, 18 # /// # Painting Estimates # /// # # # # # # # # # # # # # # # […]

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

Hangman

Create a game similar to Hangman  in which a player guesses letters to try to replicate a hidden word.  Be sure to use the following criteria. Store at least eight words in an array [each word should be 5 or more characters] Randomly select one to be the hidden word. Initially, display the hidden word […]