Program.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using System;
  2. namespace MyApp
  3. {
  4. public class Zad
  5. {
  6. int N;
  7. int ch;
  8. int x;
  9. int z;
  10. int y;
  11. public int Method()
  12. {
  13. Console.WriteLine("Введите разрядность числа ");
  14. N = Convert.ToInt32(Console.ReadLine());
  15. if (N == 2)
  16. {
  17. Console.WriteLine("Введите двузначное число ");
  18. ch = Convert.ToInt32(Console.ReadLine());
  19. if ((ch > 9) && (ch < 100))
  20. {
  21. x = ch % 10;
  22. z = ch / 10;
  23. ch = x * 10 + z;
  24. }
  25. return ch;
  26. Console.WriteLine(ch);
  27. }
  28. if (N == 3)
  29. {
  30. Console.WriteLine("Введите трехзначное число ");
  31. ch = Convert.ToInt32(Console.ReadLine());
  32. if ((ch > 99) && (ch < 1000))
  33. {
  34. x = ch % 10;
  35. z = ch / 100;
  36. y = ch / 10;
  37. y = ch % 10;
  38. ch = x * 100 + y * 10 + z;
  39. }
  40. return ch;
  41. Console.WriteLine(ch);
  42. }
  43. return ch;
  44. }
  45. }
  46. internal class Program
  47. {
  48. static void Main(string[] args)
  49. {
  50. Zad a = new Zad();
  51. a.Method();
  52. }
  53. }
  54. }