Guest User

Untitled

a guest
Feb 25th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. using System;
  2. using System.IO;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace ConsoleApp6
  9. {
  10. class Program
  11. {
  12. public static void Main(string[] args)
  13. {
  14.  
  15.  
  16.  
  17. Console.WriteLine("\n Введите строкy");
  18.  
  19. string s = Console.ReadLine();
  20.  
  21. Console.WriteLine("Вот что получилось :' {0} ' ", s.Replace('a','#'));
  22. Console.ReadLine();
  23.  
  24. }
  25.  
  26. }
  27. }
Add Comment
Please, Sign In to add comment