[Homework] C# Basics - Operators expressions and statements - Problem{4} - Rectangles
Здравейте!
Някой може ли да ми каже къде бъркам?
Когато въведа кода и компилирам програмата работи,но само с цели числа. Когато въведа реално число конзолата ми дава грешка.
Ето го и кода:
using System;
class rectangles
{
static void Main()
{
Console.Write("Entre width of the rectangles a = ");
float width = float.Parse(Console.ReadLine());
Console.Write("Entre height of the rectangles b = ");
float height = float.Parse(Console.ReadLine());
float area = width * height;
Console.WriteLine("the area of rectangles is:{0},",area);
float perimeter = width * 2 + height * 2;
Console.WriteLine("The perimeter of rectangles is:{0},",perimeter);
}
}