Bob103

C#_Kat(7)

Mar 12th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace ConsoleApplication3
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             Console.Write("Enter x:");
  11.             int x = int.Parse(Console.ReadLine());
  12.             Console.WriteLine(x.ToString().Reverse().ToArray());//вывод в обратном порядке
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment