Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Kingston_Italiana__Main_Menu_
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. string Title = "**KINGSTON ITALANIA**\n\n";
  14. Console.SetCursorPosition((Console.WindowWidth - Title.Length) / 3, Console.CursorTop);
  15. Console.WriteLine(Title);
  16.  
  17. Console.WriteLine("Welcome to Kingston Italiana. Here are your choices:\n\n");
  18. char ch;
  19. Console.WriteLine("1 - Employee Details");
  20.  
  21. Console.WriteLine("\n2 - Pay Slip");
  22.  
  23. Console.WriteLine("\n3 - Help");
  24.  
  25. Console.WriteLine("\n\nPlease select a choice from above:");
  26. ch = char.Parse(Console.ReadLine());
  27. }
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement