定义一个类,里面分别定义4个方法:求圆的面积;矩形面积;梯形面积;三角形面积.
一个class累,一个main方法,main主方法实现实例化还有函数的调用,设四个分别求圆,矩形,梯形,三角形面积的函数,求面积无非就是数学题了,if语句判断选择输入的是要求三角形还是什么图形,或者用switch语句判断。
namespace EX1_4
public class shape
public class Rectangle:shape
s = x * y;
Console.WriteLine("矩形的面积是:{0}",s);
public void GetPerim(int x,int y)
public int r;
public double s, l;
public void GetArea(int r)
public void GetPerim(int r)
l = 2 * r * PI;
Console.WriteLine("圆形的面积是:{0}", l);
static void Main(string[] args)
Rectangle rec1 = new Rectangle();
rec1.GetArea(5, 6);
rec1.GetPerim(4, 6);
Circle cir1 = new Circle();
cir1.GetArea(4);
cir1.GetPerim(5);
Console.ReadKey();
基本定义
由不在同一直线上的三条线段首尾顺次连接所组成的封闭图形叫作三角形。平面上三条直线或球面上三条弧线所围成的图形,三条直线所围成的图形叫平面三角形;三条弧线所围成的图形叫球面三角形,也叫三边形。
由三条线段首尾顺次相连,得到的封闭几何图形叫作三角形。三角形是几何图案的基本图形。
多重随机标签