Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class Program
- {
- static void Main()
- {
- Console.WriteLine("Въведи текст:");
- string text = Console.ReadLine();
- if (text.Length < 50)
- {
- Console.WriteLine("Текстът е твърде кратък!");
- return;
- }
- int[] count = new int[256];
- foreach (char c in text)
- {
- if (c < 256)
- {
- count[c]++;
- }
- }
- for (int i = 0; i < count.Length; i++)
- {
- if (count[i] > 0)
- {
- Console.WriteLine((char)i + " - " + count[i]);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement