Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication1
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. int n = 0;
  13. Console.Write("Zadejte první číslo: ");
  14. int i1 = Int32.Parse(Console.ReadLine());
  15. Console.Write("Zadejte druhé číslo: ");
  16. int i2 = Int32.Parse(Console.ReadLine());
  17. while (true)
  18. {
  19. if (i2 > i1)
  20. {
  21. n = i2;
  22. i2 = i1;
  23. i1 = n;
  24. }
  25. if (i1 % i2 == 0)
  26. break;
  27. else
  28. {
  29. i1 = i1 % i2;
  30. }
  31. }
  32. if (i2 == 1)
  33. Console.WriteLine("NSD neexistuje");
  34. else
  35. Console.WriteLine("NSD je " + i2);
  36. Console.ReadLine();
  37. }
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement