grach

Greatest Common Divisor CGD

Jul 19th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.61 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Greatest_Common_Divisor //най-голям общ делител
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int a = int.Parse(Console.ReadLine());
  14.             int b = int.Parse(Console.ReadLine());
  15.  
  16.             while (b != 0)
  17.             {
  18.                 var oldB = b; //алгоритъма на Евклид
  19.                 b = a % b;
  20.                 a = oldB;
  21.             }
  22.             Console.WriteLine(a);
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment