using System; namespace MyApp { public class Zad { int N; int ch; int x; int z; int y; public int Method() { Console.WriteLine("Введите разрядность числа "); N = Convert.ToInt32(Console.ReadLine()); if (N == 2) { Console.WriteLine("Введите двузначное число "); ch = Convert.ToInt32(Console.ReadLine()); if ((ch > 9) && (ch < 100)) { x = ch % 10; z = ch / 10; ch = x * 10 + z; } return ch; Console.WriteLine(ch); } if (N == 3) { Console.WriteLine("Введите трехзначное число "); ch = Convert.ToInt32(Console.ReadLine()); if ((ch > 99) && (ch < 1000)) { x = ch % 10; z = ch / 100; y = ch / 10; y = ch % 10; ch = x * 100 + y * 10 + z; } return ch; Console.WriteLine(ch); } return ch; } } internal class Program { static void Main(string[] args) { Zad a = new Zad(); a.Method(); } } }