Ответ:
using System;
namespace ConsoleApp
{
class Program
static void Main(string[] args)
double n,y,g,P,P1,P2,P3,P4;
Console.Write("n=");
n = double.Parse(Console.ReadLine()); // Ввод n c клавиатуры
Console.Write("y=");
y = double.Parse(Console.ReadLine()); // Ввод y c клавиатуры
Console.Write("g=");
g = double.Parse(Console.ReadLine()); // Ввод g c клавиатуры
P1 = 1.09 * g; // умножение
P2 = Math.Pow(y, 3); // Возведение в степень
P3 = P1 + P2; // Сложение
P4 = Math.Sqrt(P3); // Извлечение корня
P = n * P4; // Умножение
Console.WriteLine("P=" + P.ToString());
Console.ReadLine();
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
using System;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
double n,y,g,P,P1,P2,P3,P4;
Console.Write("n=");
n = double.Parse(Console.ReadLine()); // Ввод n c клавиатуры
Console.Write("y=");
y = double.Parse(Console.ReadLine()); // Ввод y c клавиатуры
Console.Write("g=");
g = double.Parse(Console.ReadLine()); // Ввод g c клавиатуры
P1 = 1.09 * g; // умножение
P2 = Math.Pow(y, 3); // Возведение в степень
P3 = P1 + P2; // Сложение
P4 = Math.Sqrt(P3); // Извлечение корня
P = n * P4; // Умножение
Console.WriteLine("P=" + P.ToString());
Console.ReadLine();
}
}
}