1、编写一个长方形类,在类中实现成员的定义,实现面积和周长的方法.2、定义一个类,实现圆的面积和周长要用c#设计 谢谢各位了

问题描述:

1、编写一个长方形类,在类中实现成员的定义,实现面积和周长的方法.2、定义一个类,实现圆的面积和周长
要用c#设计 谢谢各位了

using System;class Rectangle{ private int width; private int height; public Rectangle(int w, int h) { width = w; height = h; } public void Area() { Console.WriteLine("Area:{0}", width * height); ...