Код на языке C#:
using System;
class Program
{
static void Main(string[] args)
Console.Write("Введите длину ребра куба: ");
float edgeLength = float.Parse(Console.ReadLine());
float volume = edgeLength * edgeLength * edgeLength;
float surfaceArea = 6 * edgeLength * edgeLength;
Console.WriteLine("Объем куба: " + volume);
Console.WriteLine("Площадь боковой поверхности куба: " + surfaceArea);
Console.ReadKey();
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Код на языке C#:
using System;
class Program
{
static void Main(string[] args)
{
Console.Write("Введите длину ребра куба: ");
float edgeLength = float.Parse(Console.ReadLine());
float volume = edgeLength * edgeLength * edgeLength;
float surfaceArea = 6 * edgeLength * edgeLength;
Console.WriteLine("Объем куба: " + volume);
Console.WriteLine("Площадь боковой поверхности куба: " + surfaceArea);
Console.ReadKey();
}
}