//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. 新一代容器平台ACK Anywhere,来了

    5G.AR.AIoT 等场景在推动新一代云架构的演进,而容器重塑了云的使用方式. 近日,阿里云容器服务全面升级为ACK Anywhere,让企业在任何需要云的地方,都能获得一致的容器基础设施能力. 早 ...

  2. centos6.5 oracle 卸载

    1.使用SQL*PLUS停止数据库 [oracle@OracleTest oracle]$ sqlplus / as sysdba SQL> shutdown immediate; SQL> ...

  3. display:none、visibility:hidden,opacity:0三者区别

    1. display:none 设置display:none,让这个元素消失 消失不占据原本任何位置 连带子元素一起消失 元素显示:display:block 2. visibility:hidden ...

  4. 第21篇-加载与存储指令之iload、_fast_iload等(3)

    iload会将int类型的本地变量推送至栈顶.模板定义如下: def(Bytecodes::_iload , ubcp|____|clvm|____, vtos, itos, iload , _ ); ...

  5. SudokuSolver 1.0:用C++实现的数独解题程序 【一】

    SudokuSolver 1.0 用法与实现效果 SudokuSolver 是一个提供命令交互的命令行程序,提供的命令清单有: H:\Read\num\Release>sudoku.exe Or ...

  6. Arthas 进阶教程

    Arthas 进阶教程 启动math-game 下载demo-arthas-spring-boot.jar,再用java -jar命令启动: wget https://github.com/hengy ...

  7. C++/CLR 使用(VS2012,VS2013,VS2015)编写

    转载自:http://www.th7.cn/system/win/201509/129417.shtml VS2010以及以前的版本,创建项目时都可以在CLR下找到"Windows窗体应用程 ...

  8. csp-j 复赛感想

    作者:博客园小蔡编程 这次是作者第一次参加csp-j的比赛 内心还是挺激动的 今天,作者就来和大家讨论一下这次csp-j的学习心得和感想 T1 分糖果 这题描述看似复杂 其实就是一道求最大取模的题 L ...

  9. 关于takin-data,你想知道的都在这里(一)启动命令篇

    通过docker部署体验takin的小伙伴都应该知道,在安装部署手册中有提到:在启动surge-deploy任务前,需要将启动命令中的ip参数替换为docker容器所在宿主机的ip,很多小伙伴都在这里 ...

  10. 吴恩达课后习题第二课第三周:TensorFlow Introduction

    目录 第二课第三周:TensorFlow Introduction Introduction to TensorFlow 1 - Packages 1.1 - Checking TensorFlow ...