• Написать на с#
    вычислить среднее геометрическое трех чисел по формуле s = √abc

Ответы 1

  • using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Text;

    using System.Threading.Tasks;

    namespace ConsoleApp3

    {

       class Program

       {

           static void Main(string[] args)

           {

               int a, b, c;

               a = Convert.ToInt32(Console.ReadLine());

               b = Convert.ToInt32(Console.ReadLine());

               c = Convert.ToInt32(Console.ReadLine());

               Console.WriteLine(Math.Sqrt(a + b + c));

               Console.Read();

           }

       }

    }

  • Добавить свой ответ

Войти через Google

или

Забыли пароль?

У меня нет аккаунта, я хочу Зарегистрироваться

How much to ban the user?
1 hour 1 day 100 years