Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp5
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Console.Write("Дума=");
  10. string duma = Console.ReadLine();
  11. Console.Write("Буква която да изтрия=");
  12. char bukva = char.Parse(Console.ReadLine());
  13. while(duma.Contains(bukva))
  14. { int i = duma.IndexOf(bukva);
  15. duma = duma.Remove(i, 1);
  16.  
  17. }
  18. Console.WriteLine(duma);
  19. Console.ReadLine();
  20. }
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement