用c#定义一个矩形类,计算矩形的面积和周长
时间: 2024-03-11 14:19:24 浏览: 201
计算矩形的面积和周长
4星 · 用户满意度95%
以下是用 C# 定义一个矩形类,并计算矩形的面积和周长的示例代码:
```csharp
using System;
class Rectangle
{
private double length;
private double width;
public Rectangle(double length, double width)
{
this.length = length;
this.width = width;
}
public double GetArea()
{
return length * width;
}
public double GetPerimeter()
{
return 2 * (length + width);
}
}
class Program
{
static void Main(string[] args)
{
Rectangle rect = new Rectangle(5.0, 3.0);
Console.WriteLine("矩形的面积为: {0}", rect.GetArea());
Console.WriteLine("矩形的周长为: {0}", rect.GetPerimeter());
}
}
```
运行结果为:
```
矩形的面积为: 15
矩形的周长为: 16
```
阅读全文