IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> NEFU C++实验四派生类与继承(锐格) -> 正文阅读

[C++知识库]NEFU C++实验四派生类与继承(锐格)

5362、

题目内容:

下面的程序可以输出ASCII字符与所对应的数字的对照表,修改下列程序,使其可以输出字母a到字母z。

输入输出说明:

输出:每隔12个字母换行,设置输出的域宽为4
ASCII value-char 
  97a  98b  99c 100d 101e 102f  
 103g 104h 105i 106j 107k 108l
 109m 110n 111o 112p 113q 114r
 115s 116t 117u 118v 119w 120x
 121y 122z
#include<iostream>
#include<iomanip>
using namespace std;
class  table{
public:
    table (int p){
        i=p;
    }
    void ascii(void);
protected:
    int i;
};
void table ::ascii(){
    int k=1;
    for(;i<97+26;i++){
        cout<<setw(4)<<i<<(char)i;
        if(k%6==0){
            cout<<endl;
        }
        k++;
    }
}
class der_table:public table{//继承
public:
    der_table(int p,char *m):table(p){c=m;}
    void print(void);
protected:
    char *c;
};
void der_table::print(){
    cout<<c<<endl;
    table::ascii();
}
int main(){
    der_table ob1(97,"ASCII value-char");ob1.print();
}

?5522、

題目內容:

下面的程序包含了Time类和Date类的声明,要求设计一个Birthtime类,它继承了Time类和Date类,并且还有一项出生孩子的名字Childname,同时设计主程序显示一个小孩的出生时间和名字。

输入输出说明:

输出:
dcc
9:18:18
11/22/2007
#include <iostream>
#include <string.h>
using namespace std;
class Time
{
public:
    Time(int h, int m, int s)
    {
        hours = h;
        minutes = m;
        seconds = s;
    }
    void display()
    {
        cout << hours << ":" << minutes << ":" << seconds << endl;
    }

protected:
    int hours, minutes, seconds;
};
class Date
{
public:
    Date(int m, int d, int y)
    {
        month = m;
        day = d;
        year = y;
    }
    void display() { cout << month << "/" << day << "/" << year << endl; }

protected:
    int month, day, year;
};
class Birthtime : public Date,public Time
{
public:
    Birthtime(char *m, int mon, int d, int y, int h, int min, int s) : Date(mon, d, y), Time(h, min, s)
    {
        Childname = m;
    }
    void display()
    {
        cout << Childname <<endl;
      
        Time::display();
          Date::display();
    }

protected:
    char *Childname;
};
int main(){
    Birthtime ob1("dcc",11,22,2007,9,18,18);
    ob1.display();
}

5531、

題目內容:

建立普通的基类building,用来存储一座楼房的层数,房间数以及它的总平方数。建立派生类house,继承building,并存储卧室与浴室的数量,另外,建立派生类office,继承building,并存储灭火器与电话的数目。

输入输出说明:

定义house 类的对象时给的初值分别为8,4,32,4,600.0
定义building 类的对象时给的初值分别为40,40,15,40,2000.0
输出:
floor is 32 house is 4 square is 600
bedroom is 8 bathroom is 4
floor is 15 house is 40 square is 2000
extinguisher is 40 telephone is 40
#include <iostream>
using namespace std;
class building
{
protected:
    int floor, house;
    double squre;

public:
    building(int floor, int house, double squre)
    {
        this->floor = floor;
        this->house = house;
        this->squre = squre;
    }
    void display()
    {
        cout << "floor is" << floor << "house is" << house << "square is" << squre << endl;
    }
};
class house1 : public building
{
protected:
    int beedroom, bathroom;

public:
    house1(int floor, int house, double squre, int beedroom, int bathroom): building(floor, house, squre)
    {
        this->bathroom = bathroom;
        this->beedroom = beedroom;
    }
    void display()
    {
        cout << "floor is " << floor << " house is " << house << " square is " << squre << endl;
        cout << "bedroom is " << beedroom << " bathroom is " << bathroom << endl;
    }
};
class office : public building
{
protected:
    int extinguisher, telephone;
public:
    office(int floor, int house, double squre,int extinguisher,int  telephone):building(floor,house,squre){
        this->extinguisher=extinguisher;
        this->telephone=telephone;
    }
    void display(){
        cout << "floor is " << floor << " house is " << house << " square is " << squre << endl;
        cout <<"extinguisher is " <<extinguisher<< " telephone is "<<telephone <<endl;
    }

};
 int main()
{
    house1 ob1(32, 4, 600.0,8,4);
    ob1.display();
    office ob2(15, 40,2000.0, 40, 40 );
    ob2.display();
}

?5532、

題目內容:

按照要求编写程序。说明person类:含有成员name和id;说明teacher类和student类,teacher类含有成员degree和dep,student类含有成员old和sno。这两个类继承person类;说明stud类,含有成员addr和tel;说明score类,含有成员math和eng。该类继承student类和stud类。定义属于类score的对象c1及类teacher的对象t1,分别输入各数据成员的值后再显示出这些数据。

输入输出说明:

输出:
name is dcc id is 23010620071122
old is 10 sno is 201304
addr is Haping Rord tel is 13804582160
math is 94 eng is 100
name is dbz id is 23010719750412
degree is Ph.D dep is computer
#include<iostream>
using namespace std;
class person{
protected:
    string name;
    string id;
public:
    person(string name,string id){
        this->name=name;
        this->id=id;
    }
    void output(){
        cout<<"name is "<<name<<" id is "<<id<<endl;
    }
};
class teacher: public person{
protected:
    string degree,dep;
public:
    teacher(string name,string id,string degree,string dep):person(name,id){
        this->degree=degree;
        this->dep=dep;
    }
    void output(){
        person::output();
        cout<<"degree is "<<degree<<" dep is "<<dep<<endl;
    }
};
class student: public person{
protected:
    int old,sno;
public:
    student(string name,string id,int old,int sno):person(name,id){
        this->old=old;
        this->sno=sno;
    }
    void output(){
        person::output();
        cout<<"old is "<<old<<" sno is "<<sno<<endl;
    }
};
class stud{
protected:
    string addr ,tel;
public:
    stud(string addr,string tel){
        this->tel=tel;
        this->addr=addr;
    }
    void output(){
        cout<<"addr is "<<addr<<" tel is "<<tel<<endl;
    }
};
class score:public stud,public student{
protected:
    int math,eng;
public:
    score(string name,string id,int old,int sno,string addr,string tel,int math,int eng):student(name,id,old,sno),stud(addr,tel){
        this->math=math;
        this->eng=eng;
    }
    void output(){
        student::output();
        stud::output(); 
        cout<<"math is "<<math<<" eng is "<<eng<<endl;
    }
};
int main(){
    score c1("dcc","23010620071122",10,201304,"Haping Road","13804582160",94,100);
    c1.output();
    teacher t1("dbz","23010719750412","Ph.D","Computer");
    t1.output();
}
  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2022-04-04 11:50:13  更:2022-04-04 11:52:02 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 1:32:26-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码