引用+函数扩充+结构体

1.把课堂上的结构体类型改为class类型

#include 

using namespace std;
class stu
{
    double sorce=50.1;
    int age=18;
    char sex='m';
    int tall=180;
public:
    int getage();
    char getsex();
    int gettall();
    void set(int a,char b,int c);
};
int stu::getage()
{
    return age;
}
char stu::getsex()
{
    return sex;
}
int stu::gettall()
{
    return tall;
}
void stu::set(int a,char b,int c)
{
    age=a;
    sex=b;
    tall=c;
}
int main()
{
    cout<<"age"<<"\t";
    cout<<"sex"<<"\t";
    cout<<"tall"<

引用+函数扩充+结构体_第1张图片2.写一个有默认参数的函数,将函数的声明和定义分开,在主函数内成功调用

#include 

using namespace std;
int add(int a,int b,int c=3);
int main()
{
    cout<

引用+函数扩充+结构体_第2张图片

你可能感兴趣的:(c++)