c++day2(2023/12/27)

发布时间:2024年01月03日

1.

#include <iostream>
#include<iomanip>
#include<cstring>
using namespace std;

class Stu
{
    int age;
    string sex;
    int high;
public:
    void set_Stu(int age2,string sex2,int high2);
    int get_age();
    string get_sex();
    int get_high();
};

void Stu::set_Stu(int age2, string sex2, int high2)
{
    age=age2;
    sex=sex2;
    high=high2;
}

int Stu::get_age()
{
    return age;
}

string Stu::get_sex()
{
    return sex;
}

int Stu::get_high()
{
    return high;
}

int main()
{
    Stu stu;
    stu.set_Stu(23,"男",185);
    cout<< "age:" << stu.get_age() <<endl;
    cout<< "sex:" << stu.get_sex() <<endl;
    cout<< "high:" << stu.get_high() <<endl;
    return 0;
}

2.

在这里插入图片描述
在这里插入图片描述

3.

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

文章来源:https://blog.csdn.net/weixin_45340901/article/details/135254653
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。