Compile time error @ SoftUni Judge
Compiled file is missing. Compiler output: C:\Windows\TEMP\tmpE003.tmp(11,32): error CS1003: Syntax error, ',' expected Някаква идея какъв е проблемът?
Compiled file is missing. Compiler output: C:\Windows\TEMP\tmpE003.tmp(11,32): error CS1003: Syntax error, ',' expected Някаква идея какъв е проблемът?
Този код работи
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Circle_Area_and_Perimeter
{
class Program
{
static void Main(string[] args)
{
var r = double.Parse(Console.ReadLine());
Console.WriteLine($"Area = {Math.PI* r *r}");
Console.WriteLine("Perimeter = {0}", Math.PI * 2 * r);
}
}
}