1011hw

#include 

using namespace std;
class bed
{
private:
    string sleep;
public:
    //无残构造
    bed() {}
    //有参构造
    bed(string sleep):sleep(sleep)
    {}
    void show()
    {
        cout <

你可能感兴趣的:(算法)