Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("Print your text, using some <a> letters");
- string userString = Console.ReadLine();
- Console.WriteLine(userString.Replace("a", "#"));
- Console.ReadKey();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment