C++ day3

#include <iostream>

using namespace std;
class rec
{
    const int length;
    int width;
public:
    rec (int length):length(length){};
    void set_width(int W);
    int get_length();
    int get_width();
    void show();
};

void rec::set_width(int W)
{
    width=W;
}
int rec::get_length()
{
    return length;
}
int rec::get_width()
{
    return width;
}
void rec::show()
{
    int l,s;
    l=2*(length+width);
    s=length*width;
    cout<<"周长:"<<l<<endl;
    cout<<"面积:"<<s<<endl;
}
int main()
{
    rec s(6);
    s.set_width(5);

    int a=s.get_width();
    int b=s.get_length();
    cout<<a<<endl;
    cout<<b<<endl;
    s.show();
    return 0;
}
#include <iostream>

using namespace std;
class y
{
    int &R;
public:
    y(int &R):R(R){};
    void show();
};

void y::show()
{
    double PI=3.14;

    double l,s;
    l=2*PI*R;
    s=PI*R*R;
    cout<<"周长:"<<l<<endl;
    cout<<"面积:"<<s<<endl;
}
int main()
{
    int r=4;
    y s(r);
    s.show();
    return 0;
}
#include <iostream>

using namespace std;
class car
{
    string se;
    string brand;
    int speed;
public:
    car(string a,string b,int c):se(a),brand(b),speed(c){};
    void display();
    void acc(int a);
};

void car::display()
{
    cout<<se<<endl;
    cout<<brand<<endl;
    cout<<speed<<endl;
}
void car::acc(int a)
{
    speed=a;
}
int main()
{

    string a,b;
    getline(cin,a);
    getline(cin,b);
    car s(a,b,50);
    s.display();
    s.acc(80);
    return 0;
}
相关推荐
Invulnerabl_DL2 分钟前
C++ STL学习
开发语言·c++·学习·stl
steamedobun12 分钟前
【爬虫】selenium打开浏览器以及页面
开发语言·python·selenium
智慧老师13 分钟前
数据结构第一弹-数据结构在不同领域的应用
开发语言·数据结构·python
caifox1 小时前
C# 探险之旅:第十四节 - 函数介绍
开发语言·c#
zi__you2 小时前
【Python网络爬虫 常见问题汇总】
开发语言·爬虫·python
水w2 小时前
微服务之间的相互调用的几种常见实现方式对比 2
java·开发语言·后端·微服务·架构
梧桐树04292 小时前
python面向对象高级编程:使用@property
开发语言·python
2401_846535952 小时前
Scala的泛型类和泛型特质
开发语言·后端·scala
刘翔在线犯法2 小时前
Scala的导入
开发语言·后端·scala
睎zyl2 小时前
scala的泛型
开发语言·后端·scala