AlexRaynor

3.4.5

Feb 13th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1.  class Program
  2.     {
  3.         static void Main(string[] args)
  4.         {
  5.             Console.WriteLine("Print your text, using some <a> letters");
  6.             string userString = Console.ReadLine();
  7.             Console.WriteLine(userString.Replace("a", "#"));
  8.             Console.ReadKey();
  9.         }
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment