Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class SymbolAppearing
- {
- static void Main()
- {
- string text = "Yambol and Vidin are beautiful cities";
- int index = 0, appearance = 0;
- Console.Write("Indexes: ");
- while((index = text.IndexOf('l', index)) != -1)
- {
- Console.Write(index++ + " ");
- appearance++;
- }
- Console.WriteLine();
- Console.WriteLine("Appearance: " + appearance);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment