下面的代码是我的面试问题,但我不知道如何完美
代码:
public class Shape
{
public void Rectangle(int length, int height)
{
Console.Write(length * height);
}
public void Circle(int radius)
{
Console.Write(3.14 * (radius * radius));
}
}
有任何想法吗?提前致谢