Spocoman

03. Stream Of Letters

Nov 21st, 2021 (edited)
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.48 KB | None | 0 0
  1. using System;
  2.  
  3. namespace StreamOfLetters
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string word = "";
  10.             string total = "";
  11.             int c = 0;
  12.             int o = 0;
  13.             int n = 0;
  14.             while (true)
  15.             {
  16.                 string letter = Console.ReadLine();
  17.                 if (letter == "End")
  18.                 {
  19.                     break;
  20.                 }
  21.                 char letters = char.Parse(letter);
  22.                 if (letters >= 'A' && letters <= 'Z' || letters >= 'a' && letters <= 'z')
  23.                 {
  24.                     if (letters == 'c' && c == 0)
  25.                     {
  26.                         c += 1;
  27.                     }
  28.                     else if (letters == 'o' && o == 0)
  29.                     {
  30.                         o += 1;
  31.                     }
  32.                     else if (letters == 'n' && n == 0)
  33.                     {
  34.                         n += 1;
  35.                     }
  36.                     else
  37.                     {
  38.                         word += letters;
  39.                     }
  40.                     if (c == 1 && o == 1 && n == 1)
  41.                     {
  42.                         c -= 1;
  43.                         o -= 1;
  44.                         n -= 1;
  45.                         total += " " + word;
  46.                         word = "";
  47.                     }
  48.                 }  
  49.             }
  50.             Console.WriteLine(total);  
  51.         }
  52.     }
  53. }
  54.  
Add Comment
Please, Sign In to add comment