Изпитна задача-шивашки цех
Здравейте!
Опитвам се да реша задачата от 6та тема- Упражнение"Прости операции и пресмятания". Въвеждам решение, но ми дава грешката по-долу...Някакви идеи защо не тръгва?
static void Main(string[] args)
{
int numOfTables = int.Parse(Console.ReadLine());
double tableLength = double.Parse(Console.ReadLine());
double tableWeidth = double.Parse(Console.ReadLine());
double tableClothArea = (tableLength + 2 * 0.30) * (tableWeidth + 2 * 0.30);
double squareSide = tableLength / 2;
double squareArea = squareSide * squareSide;
double totalTableClothArea = tableClothArea * numOfTables;
double totalSquareArea = squareArea * numOfTables;
double tableClothPriceUSD = totalTableClothArea * 7;
double squareAreaPriceUSD = totalSquareArea * 9;
double tableClothPriceBGN = tableClothPriceUSD * 1.85;
double squarePriceBGN = squareAreaPriceUSD * 1.85;
double totalUSD = tableClothPriceUSD + squareAreaPriceUSD;
Console.WriteLine($"{totalUSD:f2} USD");
Console.WriteLine($"{totalBGN:f2} BGN");
}
}
}
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 ConsoleApp7.Program.Main(String[] args) in C:\Users\user\source\repos\ConsoleApp8\ConsoleApp8\Program.cs:line 16
Press any key to continue . . .
Благодаря! :)
Няма защо.
Оправих си и "неразбираемата част" от това, което бях написала. :)
Няма проблем и така го разбрах!
А принципно какво означава като ми изпише че липсва компилиран файл?Често ми дава такава грешка /не на тази задача!/: