Advertisement
RMarK0

Untitled

Dec 26th, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.73 KB | None | 0 0
  1. namespace ConsoleApp10
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             // Ученики шифруют свои послания, записывая их наоборот.
  8.             // Создать прогу для зашифровки и расшифровки таких посланий.
  9.             string str = "Мне кажется, что нам тут не рады.";
  10.             string str2 = null;
  11.             for (int i = str.Length - 1; i > -1; i--)
  12.                 str2 += str[i];
  13.             Console.WriteLine(str);
  14.             Console.ForegroundColor = ConsoleColor.Green;
  15.             Console.WriteLine(str2);
  16.             Console.ResetColor();
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement