Advertisement
myloyo

4.6.16

Sep 15th, 2023 (edited)
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.05 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Security.Cryptography;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace ConsoleApp3
  9. {
  10.     class Program
  11.     {
  12.         static void Main()
  13.         {
  14.             Console.Write("Введите число а: ");
  15.             int a = int.Parse(Console.ReadLine());
  16.             Console.Write("Введите число b: ");
  17.             int b = int.Parse(Console.ReadLine());
  18.             int c = a * a + b * b;
  19.             int d = a * b;
  20.             int c1 = c;
  21.             int d1 = d;
  22.             while (c > 0 && d > 0)
  23.             {
  24.                 if (c > d)
  25.                 {
  26.                     c %= d;
  27.                 }
  28.                 else
  29.                 {
  30.                     d %= c;
  31.                 }
  32.             }
  33.             int res = c + d;
  34.             c1 /= res;
  35.             d1 /= res;
  36.             Console.WriteLine("a/b + b/a = {0}/{1}", c1, d1);
  37.             Console.WriteLine("нод = {0}, {1}, {2}", res, c, d);
  38.         }
  39.     }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement