用c#面向对象的方法编 程求已知长宽的长方形的周长和面积.
发布网友
发布时间:2024-04-13 21:25
我来回答
共1个回答
热心网友
时间:2024-04-15 14:43
struct Rectangle
{
public int Length { get; set; }
public int Width { get; set; }
public int Area => Length * Width;
public int Perimeter => 2 * (Length + Width);
}