• 类的小练习


    《高级程序设计语言原理》实 验 报 告 ( 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();

            }

        }

       

    }

    三、程序运行结果示例

  • 相关阅读:
    复习一些奇怪的题目
    NOIP 考前 KMP练习
    NOIP 考前 并查集复习
    NOIP 考前 Tarjan复习
    NOIP 考前 图论练习
    BZOJ 1468 树分治
    Codeforces Round #376 (Div. 2)
    CodeVS 线段覆盖1~5
    Luogu 3396 权值分块
    BZOJ 2743 树状数组
  • 原文地址:https://www.cnblogs.com/to-creat/p/4945065.html
Copyright © 2020-2023  润新知