using System;
namespace restless
{
class Program
static void Main(string[] args)
double R, h;
Console.Write("R=");
R = Convert.ToDouble(Console.ReadLine());
Console.Write("h=");
h = Convert.ToDouble(Console.ReadLine());
Console.WriteLine($"Объём цилиндра: {3.14 * R * R * h}");
Console.WriteLine($"Объём конуса: {(3.14 * R * R * h) * 1/3}");
}
Ответ:
360 градусов и 360 градусов
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
using System;
namespace restless
{
class Program
{
static void Main(string[] args)
{
double R, h;
Console.Write("R=");
R = Convert.ToDouble(Console.ReadLine());
Console.Write("h=");
h = Convert.ToDouble(Console.ReadLine());
Console.WriteLine($"Объём цилиндра: {3.14 * R * R * h}");
Console.WriteLine($"Объём конуса: {(3.14 * R * R * h) * 1/3}");
}
}
}
Ответ:
360 градусов и 360 градусов