C#面积练习

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Ploymorphism
{
     class Circle
    {
        protected double radius;
        public Circle(double bj)
        {
            radius = bj;
        }
        public virtual double Area()
        {
            return Math.PI * radius * radius;
        }
    }
    class Cylinder : Circle
    {
        double high;
        public Cylinder(double r, double h)
            : base(r)
        {
            high = h;
        }
        public override double Area()
        {
            return base.Area() * 2 + 2 * Math.PI * radius * high;
        }
    }
    class Cone : Circle
    {
        double high;
        public Cone(double r, double h)
            : base(r)
        {
            high = h;
        }
        public override double Area()
        {
            return base.Area() + Math.PI * radius * Math.Sqrt(radius * radius + high * high);
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
            Circle cylinder = new Cylinder(100, 100);
            Console.WriteLine("半径为100,高为100的圆柱体的表面积为{0:N2}", cylinder.Area());
            Circle cone = new Cone(100, 100);
            Console.WriteLine("半径为100,高为100的圆锥体的表面积为{0:N2}", cone.Area());
        }
    }
}
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值