Judge bug
Здравейте,
Задача 06.Circle area and perimeter от Simple operations and calculations. Написах кода по-долу за решаване на задачата. В judge кода ми минава 100/100, но в C# не иска да подкара програмата с реално число(пример 4.5).
using System;
namespace exercises
{
class Program
{
static void Main(string[] args)
{
double radius = double.Parse(Console.ReadLine());
double pi = Math.PI;
double face = pi * Math.Pow(radius, 2);
double perimeter = 2 * pi * radius;
Console.WriteLine($"{face:f2}");
Console.WriteLine($"{perimeter:f2}");
}
}
}