C#------设计控制台应用程序,计算矩形的面积。要求在程序中定义一个类,其中包含两个字段用于存储矩形的长和宽

using System;

namespace ConsoleApp1
{
    class Rectangle
    {
        double length;
        double width;
        public Rectangle(double h, double w)
        {
            this.length = h;
            this.width = w;
        }
        public double getarea()
        {
            return length * width;
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
            double w, h;
            w = Convert.ToDouble(Console.ReadLine());
            h = Convert.ToDouble(Console.ReadLine());
            Rectangle R = new Rectangle(w, h);
            Console.WriteLine("矩形面积为{0}", R.getarea());
            Console.ReadLine();


        }
    }
}

你可能感兴趣的:(C#,c#,开发语言)