Как мне просто добавить два знака после запятой и округлить до ближайших двух знаков после запятой?
Первая картина-это то, что мой профессор хочет, чтобы мы сделали:
https://prnt.sc/v1drxs
Вот мой код:
Console.Write("Enter the radius for a circle: "); double radius = Convert.ToDouble(Console.ReadLine()); double diameter = 2 * radius; double circumference = Convert.ToDouble(Math.PI * diameter); Console.WriteLine("\nThe radius of the circle is " + radius + " units."); Console.WriteLine("The diameter of the circle is " + diameter + " units."); Console.WriteLine("The circumference of the circle is " + circumference + " units."); Console.Write("\nPress any key to continue..."); Console.ReadKey();
Что я уже пробовал:
Я использую Microsoft Visual Studio 2017. Я очень новичок в программировании. Помощь будет оценена по достоинству, спасибо!