Относно задачата за конвертиране от радиани в градуси.
Здравейте, колеги !
Имам проблем с принтирането на задачата с конвертиране от радиани в градуси.
Ето го и моят код и грешката. Благодаря предварително за помощта.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConvertRadiansToDegrees
{
class Program
{
static void Main(string[] args)
{
double radians = double.Parse(Console.ReadLine());
double degrees = Math.Round(radians * 180 / Math.PI);
Console.WriteLine(degrees);
}
}
}
Грешката:
3.1416
Unhandled Exception: System.FormatException: Input string was not in a correct format.
at System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
at System.Double.Parse(String s)
at ConvertRadiansToDegrees.Program.Main(String[] args) in C:\Users\Nikki\Documents\Visual Studio 2015\Projects\Solution1\ConvertRadiansToDegrees\Program.cs:line 13
Press any key to continue . . .
Да, знам, просто смених компютрите и не се усетих. Иначе благодаря за съвета :)
Няма защо! Винаги помагаме с каквото можем!