royroy23

Untitled

Jan 21st, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 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 ConsoleApplication22
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. //32
  14. int count = 0;
  15. char name, letter;
  16. Console.WriteLine("Please enter the first letter in your name: ");
  17. name = char.Parse(Console.ReadLine());
  18. do
  19. {
  20. Console.WriteLine("Please enter a letter: ");
  21. letter = char.Parse(Console.ReadLine());
  22. count++;
  23. }
  24. while (letter != name);
  25. Console.WriteLine("The first letter in your name is on the " + count + " location.");
  26. }
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment