码迷,mamicode.com
首页 > 其他好文 > 详细

类的小练习

时间:2015-11-07 16:02:47      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:

《高级程序设计语言原理》实 验 报 告 ( 5 )

 

实验名称:面向对象编程,继承机制

实验地点:信息楼318

所使用的工具软件及环境:VS2013

一、实验目的:

1、面向对象编程语言

2、类定义

二、实验内容:

定义一个名为Box的类,有三个实例变量:length, widh height, 同时定义一个设置长方体长、宽、高值的方法setlwh( )和计算长方体面积area ()和体积volumn( )的方法

主要程序代码:

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

 

namespace BOX

{

    class Box

    {

       private double length;

       private double widh;

       private double height;

        public void setlwh(double length,double widh,double height)

       {

           this.length = length;

           this.widh = widh;

           this.height = height;

       }

        public void area()

        {

            Console.WriteLine("面积为");

            Console.WriteLine( 2 * (length * widh + widh * height + length * height));

        }

        public void volumn()

        {

            Console.WriteLine("体积为");

            Console.WriteLine(length * widh * height);

        }

 

    }

    class program

    {

        static void Main(string[] args)

        {

            Box b = new Box();

            b.setlwh(1,2,3);

            b.area();

            b.volumn();

            Console.ReadLine();

        }

    }

   

}

三、程序运行结果示例

 

类的小练习

标签:

原文地址:http://www.cnblogs.com/to-creat/p/4945065.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!