Тройка Пифагора (C#)

Messages
1,679
Reaction score
288
Website
tehadm.ru
Ответ на пост:
C#:
using System;

namespace Pif3
{
    class Program
    {
        static void Main(string[] args)
        {
            int x, y, z;

            Console.WriteLine("Введите три целых числа:");
            Console.Write("Введите координаты X: ");
            x = int.Parse(Console.ReadLine());

            Console.Write("Введите координаты Y: ");
            y = int.Parse(Console.ReadLine());

            Console.Write("Введите координаты Z: ");
            z = int.Parse(Console.ReadLine());

            Console.WriteLine("Введеные Вами числа: " + Pif(x, y, z));
            Console.ReadKey();
        }

        static string Pif(int x, int y, int z)
        {         
            if (Math.Pow(x, 2) + Math.Pow(y, 2) == Math.Pow(z, 2))
            {
                return "Пифагорова тройка";
            }
            else
            {
                return "Не Пифагорова тройка";
            }
        }       
    }
}
 
Back
Top