Advertisement
Guest User

Untitled

a guest
May 16th, 2018
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _5DifferentNumbers
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int a = int.Parse(Console.ReadLine());
  10. int b = int.Parse(Console.ReadLine());
  11.  
  12. if (b - a > 3)
  13. {
  14. for (int n1 = a; n1 <= b; n1++)
  15. {
  16. for (int n2 = a; n2 <= b; n2++)
  17. {
  18. for (int n3 = a; n3 <= b; n3++)
  19. {
  20. for (int n4 = a; n4 <= b; n4++)
  21. {
  22. for (int n5 = a; n5 <= b; n5++)
  23. {
  24. if (a <= n1 && n1 < n2 && n2 < n3 && n3 < n4 && n4 < n5 && n5 <= b)
  25. {
  26. Console.WriteLine("{0} {1} {2} {3} {4}", n1, n2, n3, n4, n5);
  27. }
  28. }
  29. }
  30. }
  31. }
  32. }
  33. }
  34. else Console.WriteLine("No");
  35. }
  36. }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement