Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApplication22
- {
- class Program
- {
- static void Main(string[] args)
- {
- //32
- int count = 0;
- char name, letter;
- Console.WriteLine("Please enter the first letter in your name: ");
- name = char.Parse(Console.ReadLine());
- do
- {
- Console.WriteLine("Please enter a letter: ");
- letter = char.Parse(Console.ReadLine());
- count++;
- }
- while (letter != name);
- Console.WriteLine("The first letter in your name is on the " + count + " location.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment