//55,类的声明示例
using System;
class Date
{
    public int year;
    public int month;
    public int day;
    public void print()
    {
        Console.WriteLine("{0}/{1:D2}/{2:D2}", year, month, day);
    }
}
class Program
{
    static void Main()
    {
        Date t = new Date();
        Console.Write("请输入年:");
        t.year = Convert.ToInt32(Console.ReadLine());
        Console.Write("请输入月:");
        t.month = Convert.ToInt32(Console.ReadLine());
        Console.Write("请输入年:");
        t.day = Convert.ToInt32(Console.ReadLine());
        t.print();
    }
}
//56,利用“属性”访问私有数据成员示例
using System;
class Date
{
    int year;
    int month;//默认私有成员
    int day;
    public int Year
    {
        get { return year; }
        set { year = value; }
    }
    public int Month
    {
        get { return month; }
        set { month = value; }
    }
    public int Day
    {
        get { return day; }
        set { day = value; }
    }
    public string Print//定义日期信息属性
    {
        get
        {
            return Year + "/" + Month + "/" + Day;
        }
    }
}
class Program
{
    static void Main()
    {
        Date d = new Date();
        d.Year = 2010;
        d.Month = 4;
        d.Day = 20;
        Console.WriteLine(d.Print);
    }
}
//57,利用'属性"和"方法"访问私有数据成员示例
using System;
class Date
{
    int year, month, day;
    public int Year
    {
        set { year = value; }
    }
    public int Month
    {
        set { month = value; }
    }
    public int Day
    {
        set { day = value; }
    }
    public void Print()
    {
        Console.WriteLine("year:" + 2010);
        Console.WriteLine("month:" + 4);
        Console.WriteLine("day:" + 20);
    }
}
class Program
{
    public static void Main()
    {
        Date d = new Date();
        d.Print();
    }
}
//58,声明一个正方形类型和一个圆类型,然后分别求他们的面积
using System;
class Square
{
    int length;
    public void set(int l)
    {
        length = l;
    }
    public int area()
    {
        return length * length;
    }
}
class Circle
{
    int length;
    public void set(int l)
    {
        length = l;
    }
    public double area()
    {
        return 3.1416 * length * length / 4;
    }
}
class Program
{
    static void Main()
    {
        Square s = new Square();
        s.set(15);
        Console.WriteLine("正方形面积为:{0}", s.area());
        Circle c = new Circle();
        c.set(10);
        Console.WriteLine("圆形面积为:{0}", c.area());
        Console.ReadLine();
    }
}
//59,声明一个日期类,并进行日期的设置,判断闰年和输出等有关操作
using System;
class Date
{
    int year, month, day;
    public void set(int y, int m, int d)
    {
        year = y;
        month = m;
        day = d;
    }
    public bool isLeapYear()
    {
        return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
    }
    public void print()
    {
        Console.WriteLine("{0}-{1:D2}-{2:D2}", year, month, day);
    }
}

class Program
{
    static void Main()
    {
        Date d = new Date();
        d.set(2000, 12, 6);
        if (d.isLeapYear())
            d.print();
    }
}
//60,构造函数的定义
using System;
class Box
{
    public Box(int h, int w, int l)
    {
        height = h;
        width = w;
        length = l;
    }
    public int volume()
    {
        return (height * width * length);
    }
    private int height, width, length;
}

class Program
{
    static void Main()
    {
        Box box1 = new Box(12, 25, 30);
        Console.WriteLine("长方形box1的体积是:{0}", box1.volume());
        Box box2 = new Box(15, 30, 21);
        Console.WriteLine("长方形box2的体积是:{0}", box2.volume());
    }
}
//61,使用不同参数用构造函数对成员变量赋初值示例。重载构造函数
using System;
class Box
{
    public Box()
    {
        height = 10;
        width = 10;
        length = 10;
    }
    public Box(int h)
    {
        height = h;
        width = 10;
        length = 10;
    }
    public Box(int h,int w)
    {
        height = h;
        width = w;
        length = 10;
    }
    public Box(int h,int w,int l)
    {
        height = h;
        width = w;
        length = l;
    }
    public int volume()
    {
        return (height * width * length);
    }
    private int height,width,length;
}
class Program
{
    static void Main()
    {
        Box box1=new Box();
        Console.WriteLine("长方形box1的体积是:{0}",box1.volume());
        Box box2=new Box(15);
        Console.WriteLine("长方形box2的体积是:{0}",box2.volume());
        Box box3=new Box(15,30);
        Console.WriteLine("长方形box3的体积是:{0}",box3.volume());
        Box box4=new Box(15,30,20);
        Console.WriteLine("长方形box4的体积是:{0}",box4.volume());
    }
}
//62,析构函数
using System;
class Date
{
    public Date(int y, int m, int d)
    {
        year = y;
        month = m;
        day = d;
        Console.WriteLine("{0}:构造函数已被调用.", day);
    }
    ~Date()
    {
        Console.WriteLine("{0}:析构函数已被调用", day);
    }
    public void print()
    {
        Console.WriteLine("{0}.{1}.{2}", year, month, day);
    }
    private int year;
    private int month;
    private int day;
}
class Program
{
    static void Main()
    {
        Date today = new Date(2010, 9, 1);
        Date tomorrow = new Date(2010, 9, 2);
        Console.Write("今天是:");
        today.print();
        Console.Write("明天是:");
        tomorrow.print( );
    }
}
//63,用不同对象调用同一个函数成员输出学生的平均分示例
using System;
class Student
{
    float score1;
    float score2;
    public Student(float s1, float s2)
    {
        score1 = s1;
        score2 = s2;
    }
    public float ave()
    {
        float average;
        average = (score1 + score2) / 2;
        return average;
    }
}
class Program
{
    static void Main()
    {
        Student Zhang = new Student(89.0f, 94.5f);
        Student Li = new Student(88.0f, 89.5f);
        Student Wang = new Student(90.0f, 82.5f);
        Console.WriteLine("张的平均成绩是:{0}", Zhang.ave( ));
        Console.WriteLine("李的平均成绩是:{0}", Li.ave());
        Console.WriteLine("王的平均成绩是:{0}", Wang.ave());
    }
}
//64,使用多个对象处理有关学生类问题的示例
using System;
class Student
{
    public Student(int n, int a, int s)
    {
         num=n;
         age = a;
         score = s;
    }
    public void print()
    {
        Console.WriteLine("num:{0}", num);
        Console.WriteLine("age:{0}", age);
        Console.WriteLine("score:{0}", score);
    }
    private int num, age, score;
}
class Program
{
    static void Main()
    {
        Student stud1 = new Student(1001, 18, 87);
        Student stud2 = new Student(1002, 19, 76);
        Student stud3 = new Student(1003, 18, 72);
        stud1.print();
        stud2.print();
        stud3.print();
    }
}
//65.使用对象数组来处理学生类问题
using System;
class Student
{
    public Student(int n, int a, int s)
    {
        num = n;
        age = a;
        score = s;
    }
    public void print()
    {
        Console.WriteLine("学号: {0}", num);
        Console.WriteLine("年龄: {0}", age);
        Console.WriteLine("成绩: {0}", score);
    }
    private int num, age, score;
}
class Program
{
    static void Main( )
    {
        Student[] stud = new Student[3] { new Student(1001, 18, 87), new Student(1002, 19, 76), new Student(1003, 18, 72) };
        for (int i = 0; i < stud.Length; i++)
        {
            stud[i].print();
        }
    }
}

<C#任务导引教程>练习七的更多相关文章

  1. Senparc.Weixin.MP SDK 微信公众平台开发教程(七):解决用户上下文(Session)问题

    从这篇文章中我们已经了解了微信公众平台消息传递的方式,这种方式有一个先天的缺陷:不同用户的请求都来自同一个微信服务器,这使得常规的Session无法使用(始终面对同一个请求对象,况且还有对方服务器Co ...

  2. Docker入门教程(七)Docker API

    Docker入门教程(七)Docker API [编者的话]DockerOne组织翻译了Flux7的Docker入门教程,本文是系列入门教程的第七篇,重点介绍了Docker Registry API和 ...

  3. HMM 自学教程(七)前向后向算法

    本系列文章摘自 52nlp(我爱自然语言处理: http://www.52nlp.cn/),原文链接在 HMM 学习最佳范例,这是针对 国外网站上一个 HMM 教程 的翻译,作者功底很深,翻译得很精彩 ...

  4. Ocelot简易教程(七)之配置文件数据库存储插件源码解析

    作者:依乐祝 原文地址:https://www.cnblogs.com/yilezhu/p/9852711.html 上篇文章给大家分享了如何集成我写的一个Ocelot扩展插件把Ocelot的配置存储 ...

  5. Java NIO系列教程(七) selector原理 Epoll版的Selector

    目录: Reactor(反应堆)和Proactor(前摄器) <I/O模型之三:两种高性能 I/O 设计模式 Reactor 和 Proactor> <[转]第8章 前摄器(Proa ...

  6. iOS 11开发教程(七)编写第一个iOS11代码Hello,World

    iOS 11开发教程(七)编写第一个iOS11代码Hello,World 代码就是用来实现某一特定的功能,而用计算机语言编写的命令序列的集合.现在就来通过代码在文本框中实现显示“Hello,World ...

  7. (转)微信公众平台开发教程(七)Session处理

    原文地址:http://www.cnblogs.com/yank/p/3476874.html 微信公众平台开发教程(七)Session处理 在微信窗口,输入的信息有限,我们需要将一些信息分多次请求. ...

  8. Photoshop入门教程(七):蒙版

    学习心得:蒙版在Photoshop中也是很常用的,学会使用蒙版,可以提高图像处理能力,并且可以保护原片不被破坏,建议多使用一些蒙版. 蒙板是灰度的,是将不同灰度色值转化为不同的透明度,并作用到它所在的 ...

  9. struts2官方 中文教程 系列七:消息资源文件

    介绍 在本教程中,我们将探索使用Struts 2消息资源功能(也称为 resource bundles 资源绑定).消息资源提供了一种简单的方法,可以将文本放在一个视图页面中,通过应用程序,创建表单字 ...

随机推荐

  1. Knativa 基于流量的灰度发布和自动弹性实践

    作者 | 李鹏(元毅) 来源 | Serverless 公众号 一.Knative Knative 提供了基于流量的自动扩缩容能力,可以根据应用的请求量,在高峰时自动扩容实例数:当请求量减少以后,自动 ...

  2. Java初步学习——2021.10.05每日总结,第五周周二

    (1)今天做了什么: (2)明天准备做什么? (3)遇到的问题,如何解决? 今天学习了二维数组,包括二维数组的声明,和二维数组的创建.以及获取二维数组的长度,其中要注意的是二维数组是每个元素都是一维数 ...

  3. 一个简单的单例模式Demo

    /** * @author :nx014924 * @date :Created in 5/30/2021 1:09 PM * @description: * @modified By: * @ver ...

  4. Longhorn 云原生容器分布式存储 - 故障排除指南

    内容来源于官方 Longhorn 1.1.2 英文技术手册. 系列 Longhorn 是什么? Longhorn 云原生容器分布式存储 - 设计架构和概念 Longhorn 云原生容器分布式存储 - ...

  5. Java(43)JDK新特性之方法引用

    作者:季沐测试笔记 原文地址:https://www.cnblogs.com/testero/p/15228461.html 博客主页:https://www.cnblogs.com/testero ...

  6. Linux命令查看内存、整体负载、端口查看、进程查看、vim编辑器(3)

    一.资源占用命令   1.查看内存(free) free命令默认是以kb为单位显示的. free -m用Mb单位来显示. free -h显示单位 . free -h -s 3 ,每隔三秒刷新一次,如果 ...

  7. WeakMap与Map,使用WeakMap实现深拷贝循环引用问题

    1.Map可以使用任意类型的key值,不限字符串,对象等. 2.WeakMap只能使用对象作为key值,是弱引用,当从WeakMap中移除时,会自动垃圾回收 3.Object只能用基本类型作为key值 ...

  8. [no_code]团队贡献分分配规则

    项目 内容 2020春季计算机学院软件工程(罗杰 任健) 2020春季计算机学院软件工程(罗杰 任健) 作业要求 团队贡献分分配规则 我们在这个课程的目标是 远程协同工作,采用最新技术开发软件 这个作 ...

  9. Beta阶段第一次会议

    Beta阶段第一次例会 时间:2020.5.16 完成工作 姓名 完成任务 难度 完成度 lm 1.修订网页端信息编辑bug2.修订网页端登录bug(提前完成,相关issue已关闭) 中 100% x ...

  10. Less-5闯关失败

    进行第五关的通关还是用之前的方式进行测试以及判断是什么类型的注入.通过判断我们不难发现是字符型注入.但是出了问题,我们会发现按照原来的步骤进行注入都会返回"You are in " ...