首页 > 其他分享 >4.22

4.22

时间:2023-04-22 23:14:40浏览次数:34  
标签:string int postgraduent public student 4.22 void

#include<iostream>

using namespace std;

#include<string>

class student {

public:

    student(void);

    ~student(void);

    void setValues(int n, string str, char c);

    void display();

protected:

    int num;

    string name;

    char sex;

};

student::student(void){}

student::~student(void){}

void student::setValues(int n, string str, char c) {

    num = n;

    name = str;

    sex = c;

}

void student::display() {

    cout << num << "" << name << "" << sex << endl;

}

class postgraduent : public student {

public:

    postgraduent(void);

    ~postgraduent(void);

    void setAdvisor(string str) {

        advisor = str;

    }

    string getAdvisor() {

        return advisor;

    }

private:

    string advisor;

};

postgraduent::postgraduent(void) {

 

}

postgraduent::~postgraduent(void) {

 

}

void main() {

    postgraduent xq;

    xq.setValues(1122, "小强", 'M');

    xq.setAdvisor("Prof.Zhu");

    xq.display();

    cout << "Advisor:" << xq.getAdvisor() << endl;

    system("pause");

}

 

#include<iostream>

using namespace std;

#include<string>

class CPolygon {

protected:

    int width, height;

public:

    void set_values(int a, int b)

    {

        width = a; height = b;

    }

};

class CRectangle : public CPolygon {

public:

    int area()

    {

        return (width * height);

    }

};

class CTriangle : public CPolygon {

public:

    int area()

    {

        return (width * height / 2);

    }

};

标签:string,int,postgraduent,public,student,4.22,void
From: https://www.cnblogs.com/lml66/p/17344393.html

相关文章

  • 每日总结 4.22
    今天进行了数据测试。进行了我这边的主要流程:  <!DOCTYPEHTML><html><head><title>登录界面</title><metacharset="utf-8"><metahttp-equiv="pragma"content="no-cache"><metahttp-eq......
  • 编程一小时2023.4.22
    1.#include<iostream>usingnamespacestd;#definePI3.1415926classShape{public:virtualdoublearea()=0;};classCircle:publicShape{private:doubleradius;public:Circle(doublea){radius=a;}virtualdoublearea(){returnPI*radius*radius;}};cl......
  • 2022.4.22编程一小时打卡
    一、问题描述:请编写一个计数器Counter类,对其重载运算符“+”。二、解题思路:首先编写一个Counter类,然后,进行编写运算符“+”的重载,最后,进行代码的运行编译进行验证。三、代码实现:1#include<iostream>2#include<string>3usingnamespacestd;4classCounter5{......
  • 4.22趣味百题
    一问题描述 一辆固定车速的汽车,司机在上午10点看到里程表是一个对称数95859即从左往右和从右往左读一样两小时后看到里程表上出现一个新的对称数仍为对称数问该车的速度是多少新的对称数是多少?二设计思路两小时后的里程数一定大于95859但为五位数一定小于100000可以用......
  • 4.22打卡
    #include<iostream>#include<iomanip>#include<cmath>usingnamespacestd;doublepower(doublex,intn){doubleval=1.0;while(n--)val*=x;returnval;}intmain(){intvalue=0;cout<<"Enteran8b......
  • 建民打卡日记4.22
    一、问题描述输入N个数组成的有序数列,在数组中查找某个数的位置,若找到,输出下标,否则输出notfound二、流程设计1.取数组最大值最小值下标high和low2.将待查找数与中值比较,若小于中值则查找前半段,否则查找后半段3.输出结果三、流程图设计四、代码实现#include<iostream>......
  • Centos7 内核升级(5.4.225)
    目录一、背景二、在线yum安装1)查看当前内核版本信息2)导入仓库源3)选择ML或LT版本安装4)设置启动5)生成grub配置文件6)重启7)验证是否升级成功8)删除旧内核(可选)三、离线rp......
  • 第二章第1节: 2020.04.22 智能互联网之核心技术实践篇【一】
                   cas先查比较后再往里插入,以防止数据不一致           ......