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

0 голосов
49 просмотров

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


Информатика (16 баллов) | 49 просмотров
Дан 1 ответ
0 голосов

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();

       }

   }

}

(72 баллов)