Advertisement
Sephinroth

prac 8 ex 3 (nf)

Nov 25th, 2019
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.98 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication2
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             Console.WriteLine("Введите сообщение: ");
  13.             string str = Console.ReadLine();
  14.             int pos_st = 0, pos_end;
  15.             for (int i = 0; i < str.Length; i++)
  16.                 if (!Char.IsLetterOrDigit(str[i]))
  17.                 {
  18.                     pos_end = i;
  19.                     string tmp = str.Substring(pos_st, pos_end - pos_st);
  20.                     pos_st = pos_end;
  21.                     if (Char.IsUpper(tmp[0]))
  22.                         Console.WriteLine(tmp);
  23.                    
  24.                 }
  25.                
  26.  
  27.             /*
  28.             char x = '+';
  29.             Console.WriteLine((int)x);*/
  30.                
  31.             Console.ReadKey();
  32.         }
  33.     }
  34. }
  35.  
  36. // 97-122 — буквы
  37. // 65-90
  38. // 48-57 — цифры
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement