实验五

任务一

publisher.hpp

 1 #pragma once
 2 
 3 #include <iostream>
 4 #include <string>
 5 
 6 using std::cout;
 7 using std::endl;
 8 using std::string;
 9 
10 // 发行/出版物类:Publisher (抽象类)
11 class Publisher {
12 public:
13     Publisher(const string &s = "");            // 构造函数
14 
15 public:
16     virtual void publish() const = 0;                 // 纯虚函数,作为接口继承
17     virtual void use() const = 0;                     // 纯虚函数,作为接口继承
18 
19 protected:
20     string name;    // 发行/出版物名称
21 };
22 
23 Publisher::Publisher(const string &s): name {s} {
24 }
25 
26 
27 // 图书类: Book
28 class Book: public Publisher {
29 public:
30     Book(const string &s = "", const string &a = "");  // 构造函数
31 
32 public:
33     void publish() const override;        // 接口
34     void use() const override;            // 接口
35 
36 private:
37     string author;          // 作者
38 };
39 
40 Book::Book(const string &s, const string &a): Publisher{s}, author{a} {
41 }
42 
43 void Book::publish() const {
44     cout << "Publishing book: 《" << name << "》 by " << author << endl;
45 }
46 
47 void Book::use() const {
48     cout << "Reading book: " << name << " by " << author << endl;
49 }
50 
51 
52 // 电影类: Film
53 class Film: public Publisher {
54 public:
55     Film(const string &s = "", const string &d = "");   // 构造函数
56 
57 public:
58     void publish() const override;    // 接口
59     void use() const override;        // 接口            
60 
61 private:
62     string director;        // 导演
63 };
64 
65 Film::Film(const string &s, const string &d): Publisher{s}, director{d} {
66 }
67 
68 void Film::publish() const {
69     cout << "Publishing film: <" << name << "> directed by " << director << endl;
70 }
71 
72 void Film::use() const {
73     cout << "Watching film: " << name << " directed by " << director << endl;
74 }
75 
76 
77 // 音乐类:Music
78 class Music: public Publisher {
79 public:
80     Music(const string &s = "", const string &a = "");
81 
82 public:
83     void publish() const override;        // 接口
84     void use() const override;            // 接口
85 
86 private:
87     string artist;      // 音乐艺术家名称
88 };
89 
90 Music::Music(const string &s, const string &a): Publisher{s}, artist{a} {
91 }
92 
93 void Music::publish() const {
94     cout << "Publishing music <" << name << "> by " << artist << endl;
95 }
96 
97 void Music::use() const {
98     cout << "Listening to music: " << name << " by " << artist << endl;
99 }
View Code

task1.cpp

 1 #include "publisher.hpp"
 2 #include <vector>
 3 #include <typeinfo>
 4 
 5 using std::vector;
 6 
 7 void test() {
 8    vector<Publisher *> v;
 9 
10    v.push_back(new Book("Harry Potter", "J.K. Rowling"));
11    v.push_back(new Film("The Godfather", "Francis Ford Coppola"));
12    v.push_back(new Music("Blowing in the wind", "Bob Dylan"));
13 
14    for(auto &ptr: v) {
15         cout << "pointer type: " << typeid(ptr).name() << endl;  // 输出指针类型
16         cout << "RTTI type: " << typeid(*ptr).name() << endl;    // 输出指针指向的对象类型
17         ptr->publish();
18         ptr->use();
19         cout << endl;
20    }
21 }
22 
23 int main() {
24     test();
25 }
View Code

结果截图

任务二

book.hpp

 1 #pragma once
 2 
 3 #include <string>
 4 #include <iostream>
 5 #include <iomanip>
 6 
 7 using std::string;
 8 using std::ostream;
 9 using std::endl;
10 using std::setw;
11 using std::left;
12 
13 class Book {
14 public:
15     Book(const string &name, const string &author, const string &translator, const string &isbn, float price);
16 
17     friend ostream& operator<<(ostream &out, const Book &book);
18 
19 private:
20     string name;        // 书名
21     string author;      // 作者
22     string translator;  // 译者
23     string isbn;        // isbn号
24     float price;        // 定价
25 };
26 
27 // 成员函数实现
28 Book::Book(const string &name, const string &author, const string &translator, const string &isbn, float price) {
29     this->name = name;
30     this->author = author;
31     this->translator = translator;
32     this->isbn = isbn;
33     this->price = price;
34 }
35 
36 // 友元实现
37 ostream& operator<<(ostream &out, const Book &book) {
38     out << left;
39     out << setw(15) << "书名:" << book.name << endl
40         << setw(15) << "作者:" << book.author << endl
41         << setw(15) << "译者:" << book.translator << endl
42         << setw(15) << "ISBN:" << book.isbn << endl
43         << setw(15) << "定价:" << book.price;
44 
45     return out;
46 }
View Code

booksale.hpp

#pragma once

#include "book.hpp"
#include <iostream>
#include <string>
#include <iomanip>

using std::string;
using std::cout;
using std::endl;
using std::setw;

class BookSale {
public:
    BookSale(const Book &b, float price, int amount);
    int get_amount() const;
    
    friend ostream& operator<<(ostream &out, const BookSale &item);

private:
    Book rb;         
    float sales_price;      // 售价
    int sales_amount;       // 销售数量
    float revenue;          // 营收
};

// 成员函数实现
BookSale::BookSale(const Book &b, float price, int amount): rb{b}, sales_price(price), sales_amount{amount} {  
    revenue = sales_amount * sales_price;
}

int BookSale::get_amount() const {
    return sales_amount;
}

// 友元函数实现
ostream& operator<<(ostream &out, const BookSale &item) {
    out << left;
    out << item.rb << endl
        << setw(15) << "售价:" << item.sales_price << endl
        << setw(15) << "销售数量:" << item.sales_amount << endl
        << setw(15) << "营收:" << item.revenue;

    return out;
}
View Code

task2.cpp

#include "booksale.hpp"
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>

// 按图书销售数额比较
bool compare_by_amount(const BookSale &x1, const BookSale &x2) {
    return x1.get_amount() > x2.get_amount();
}

void test() {
    using namespace std;

     vector<BookSale> sales_lst;         // 存放图书销售记录

     int books_number;
    cout << "录入图书数量: ";
    cin >> books_number;

    cout << "录入图书销售记录" << endl;
    for(int i = 0; i < books_number; ++i) {
        string name, author, translator, isbn;
        float price;
        cout << string(20, '-') << "" << i+1 << "本图书信息录入" << string(20, '-') << endl;
        cout << "录入书名: "; cin >> name;
        cout << "录入作者: "; cin >> author;
        cout << "录入译者: "; cin >> translator;
        cout << "录入isbn: "; cin >> isbn;
        cout << "录入定价: "; cin >> price;

        Book book(name, author, translator, isbn, price);

        float sales_price;
        int sales_amount;

        cout << "录入售价: "; cin >> sales_price;
        cout << "录入销售数量: "; cin >> sales_amount;

        BookSale record(book, sales_price, sales_amount);
        sales_lst.push_back(record);
    }

    // 按销售册数排序
    sort(sales_lst.begin(), sales_lst.end(), compare_by_amount);

    // 按销售册数降序输出图书销售信息
    cout << string(20, '=') <<  "图书销售统计" << string(20, '=') << endl;
    for(auto &t: sales_lst) {
        cout << t << endl;
        cout << string(40, '-') << endl;
    }
}

int main() {
    test();
}
View Code

结果截图

任务三

pets.hpp

#include<string>
#include<iostream>
using std::string;

class MachinePets{
    string nickname;
    public:
        MachinePets(const string &s):nickname(s){}
        string get_nickname() const{ return nickname;}
        virtual string talk()=0;
};

class PetCats:public MachinePets{
    public:
        PetCats(const string &s):MachinePets(s){}
        string talk(){
            return "miao wu~";
        }
};

class PetDogs:public MachinePets{
    public:
        PetDogs(const string &s):MachinePets(s){}
        string talk(){
            return "wang wang~";
        }
};
View Code

task3.cpp

#include <iostream>
#include <vector>
#include "pets.hpp"

void test() {
    using namespace std;

    vector<MachinePets *> pets;

    pets.push_back(new PetCats("miku"));
    pets.push_back(new PetDogs("da huang"));

    for(auto &ptr: pets)
        cout <<ptr->get_nickname() << " says " << ptr->talk() << endl;
}

int main() {
    test();
}
View Code

结果截图

任务四

film.hpp

#pragma once
#include <iostream>
#include <string>
#include<iomanip>
using namespace std;
class Film{
    private:
        string name;
        string director;
        string country;
        string year;
    public:
        friend istream& operator>>(istream& in, Film& film);
        friend ostream& operator<<(ostream& out,const Film& film);
        string get_year() const;
};

istream& operator>>(istream& in, Film& film){
    cout <<"录入片名:" ;          
    in>>film.name;
    cout <<"录入导演:" ;          
    in>>film.director;
    cout <<"录入制片国家/地区:" ;
    in>> film.country;
    cout <<"录入上映年份:";      
    in>> film.year;
    return in; 
}

ostream& operator<<(ostream& out,const Film& film){
    out<<left;
    out<<setw(20)<<film.name<<setw(10)<<film.director<<setw(10)<<film.country<<setw(10)<<film.year;
    return out;
}

string Film::get_year() const{
    return year;
}

bool compare_by_year(const Film& f1, const Film& f2) {
    return f1.get_year() < f2.get_year();
}
View Code

task4.cpp

#include "film.hpp"
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>

void test() {
    using namespace std;
    
    int n;
    cout << "输入电影数目: ";
    cin >> n;

    cout << "录入" << n << "部影片信息" << endl;
    vector<Film> film_lst;
    for(int i = 0; i < n; ++i) {
        Film f;
        cout << string(20, '-') << "" << i+1 << "部影片录入" << string(20, '-') << endl;
        cin >> f;
        film_lst.push_back(f);
    }

    // 按发行年份升序排序
    sort(film_lst.begin(), film_lst.end(), compare_by_year);

    cout << string(20, '=') + "电影信息(按发行年份)" +  string(20, '=')<< endl;
    for(auto &f: film_lst)
        cout << f << endl;
}

int main() {
    test();
}
View Code

结果截图

任务五

Complex.hpp

#pragma once
#include <iostream>
#include <string>
#include<iomanip>
using namespace std;
template <typename T>
class Complex{
    private:
        T real;
        T imag;
    public:
        Complex(T r=0.0,T i=0.0):real(r),imag(i){}
        Complex(const Complex &c);
        Complex operator+(const Complex &c) {
            return Complex(real+c.real,imag+c.imag);
        }
        Complex operator-(const Complex &c) {
            return Complex(real-c.real,imag-c.imag);
        }
        Complex& operator+=(const Complex &c){
            real+=c.real;
            imag+=c.imag;
            return *this;
        }
        T get_real();
        T get_imag();
        friend bool operator==(const Complex &c1,const Complex &c2) {
            if((c1.real==c2.real)&&(c1.imag==c2.imag))
                return true;
            else
                return false;
        }
        friend istream& operator>>(istream& in,Complex& c){
            in>>c.real>>c.imag;
            return in;
        }
        friend ostream& operator<<(ostream& out,const Complex& c){
            if(c.imag>0)
            {
                out<<left;
                out<<c.real<<"+"<<c.imag<<"i";
            }
            else
            {
                out<<left;
                out<<c.real<<c.imag<<"i";
            }
            return out;
        }
};
template <typename T>
Complex<T>::Complex(const Complex &c) {
    real=c.real;
    imag=c.imag;
}

template <typename T>
T Complex<T>::get_imag() {
    return imag;
}
template <typename T>
T Complex<T>::get_real() {
    return real;
}
View Code

task5.cpp

#include "Complex.hpp"
#include <iostream>

using std::cin;
using std::cout;
using std::endl;
using std::boolalpha;

void test1() {
    Complex<int> c1(2, -5), c2(c1);

    cout << "c1 = " << c1 << endl;
    cout << "c2 = " << c2 << endl;
    cout << "c1 + c2 = " << c1 + c2 << endl;
    
    c1 += c2;
    cout << "c1 = " << c1 << endl;
    cout << boolalpha << (c1 == c2) << endl;
}

void test2() {
    Complex<double> c1, c2;
    cout << "Enter c1 and c2: ";
    cin >> c1 >> c2;
    cout << "c1 = " << c1 << endl;
    cout << "c2 = " << c2 << endl;

    cout << "c1.real = " << c1.get_real() << endl;
    cout << "c1.imag = " << c1.get_imag() << endl;
}

int main() {
    cout << "自定义类模板Complex测试1: " << endl;
    test1();

    cout << endl;

    cout << "自定义类模板Complex测试2: " << endl;
    test2();
}
View Code

 

 任务六

date.h

#pragma once

class Date {
    private:
        int year;
        int month;
        int day;
        int totalDays;
    public:
        Date(int year, int month, int day);
        int getYear() const {
            return year;
        }
        int getMonth() const {
            return month;
        }
        int getDay() const {
            return day;
        }
        int getMaxDay() const;
        bool isLeapYear() const {
            return year % 4 == 0 && year % 100 != 0 || year % 400 == 0;
        }
        void show() const;
        int operator-(const Date& date) const {
            return totalDays - date.totalDays;
        }
};
View Code

date.cpp

#include "date.h"
#include <iostream>
#include <cstdlib>

using namespace std;

namespace {
    const int DAYS_BEFIRE_MONTH[] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 };
}

Date::Date(int year, int month, int day) : year(year), month(month), day(day) {
    if (day <= 0 || day > getMaxDay()) {
        cout << "Invalid date: ";
        show();
        cout << endl;
        exit(1);
    }
    int years = year - 1;
    totalDays = years * 365 + years / 4 - years / 100 + years / 400 + DAYS_BEFIRE_MONTH[month - 1] + day;
    if (isLeapYear() && month > 2) totalDays++;
}

int Date::getMaxDay() const {
    if (isLeapYear() && month == 2)
        return 29;
    else
        return DAYS_BEFIRE_MONTH[month] - DAYS_BEFIRE_MONTH[month - 1];
}

void Date::show() const {
    cout << getYear() << "-" << getMonth() << "-" << getDay();
}
View Code

accumulator.h

#pragma once

#include "date.h"

class Accumulator {
private:
    Date lastDate;
    double value;
    double sum;

public:
    Accumulator(const Date& date, double value) : lastDate(date), value(value), sum(0) {}

    double getSum(const Date& date) const {
        return sum + value * (date - lastDate).getTotalDays(); // 假设Date类有getTotalDays()方法来计算日期差
    }

    void change(const Date& date, double value) {
        sum = getSum(date);
        lastDate = date;
        this->value = value;
    }

    void reset(const Date& date, double value) {
        lastDate = date;
        this->value = value; // 修复了原始代码中的错误,这里应该赋值
        sum = 0;
    }
};
View Code

account.h

#pragma once

#include "date.h"
#include "accumulator.h"
#include <string>

using namespace std;

class Account {
private:
    string id;
    double balance;
    static double total;
protected:
    Account(const Date& date, const string &id);
    void record(const Date& date, double amount, const string& desc);
    void error(const string& msg) const;
public:
    const string& getId() {
        return id;
    }
    double getBalance() const {
        return balance;
    }
    static double getTotal() {
        return total;
    }
    virtual void deposit(const Date& date, double amount, const string& desc) = 0;
    virtual void withdraw(const Date& date, double amount, const string& desc) = 0;
    virtual void settle(const Date& date) = 0;
    virtual void show() const;
};

class SavingsAccount : public Account {
private:
    Accumulator acc;
    double rate;
public:
    SavingsAccount(const Date& date, const string& id, double rate);
    double getRate() const {
        return rate;
    }
    void deposit(const Date& date, double amount, const string& desc);
    void withdraw(const Date& date, double amount, const string& desc);
    void settle(const Date& date);
};

class CreditAccount : public Account {
private:
    Accumulator acc;
    double credit;
    double rate;
    double fee;
    double getDebt() const {
        double balance = getBalance();
        return (balance < 0 ? balance : 0);
    }
public:
    CreditAccount(const Date& date, const string& id, double credit, double rate, double fee);
    double getCredit() const {
        return credit;
    }
    double getRate() const {
        return rate;
    }
    double getFee() const {
        return fee;
    }
    double getAvailableCredit() const {
        if (getBalance() < 0) return credit + getBalance();
        else return credit;
    }
    void deposit(const Date& date, double amount, const string& desc);
    void withdraw(const Date& date, double amount, const string& desc);
    void settle(const Date& date);
    void show() const;
};
View Code

account.cpp

#include "account.h"
#include <cmath>
#include <iostream>

using namespace std;

double Account::total = 0;

Account::Account(const Date& date, const string& id) : id(id), balance(0) {
    date.show();
    cout << "\t#" << id << " created" << endl;
}

void Account::record(const Date& date, double amount, const string& desc) {
    amount = floor(amount * 100 + 0.5) / 100;
    balance += amount;
    total += amount;
    date.show();
    cout << "\t#" << id << "\t" << amount << "\t" << balance << "\t" << desc << endl;
}

void Account::show() const {
    cout << id << "\tBalance:" << balance;
}

void Account::error(const string& msg) const {
    cout << "Error(#" << id << "):" << msg << endl;
}

SavingsAccount::SavingsAccount(const Date& date, const string& id, double rate) 
    : Account(date, id), rate(rate), acc(date, 0) {}

void SavingsAccount::deposit(const Date& date, double amount, const string& desc) {
    record(date, amount, desc);
    acc.change(date, getBalance());
}

void SavingsAccount::withdraw(const Date& date, double amount, const string& desc) {
    if (amount > getBalance()) {
        error("not enough money");
    } else {
        record(date, -amount, desc);
        acc.change(date, getBalance());
    }
}

void SavingsAccount::settle(const Date& date) {
    double interest = acc.getSum(date) * rate / (date - Date(date.getYear() - 1, 1, 1));
    if (interest != 0) record(date, interest, "interest");
    acc.reset(date, getBalance());
}

CreditAccount::CreditAccount(const Date& date, const string& id, double credit, double rate, double fee) 
    : Account(date, id), credit(credit), rate(rate), fee(fee), acc(date, 0) {}

void CreditAccount::deposit(const Date& date, double amount, const string& desc) {
    record(date, amount, desc);
    acc.change(date, getDebt());
}

void CreditAccount::withdraw(const Date& date, double amount, const string& desc) {
    if (amount - getBalance() > credit) {
        error("not enough credit");
    } else {
        record(date, -amount, desc);
        acc.change(date, getDebt());
    }
}

void CreditAccount::settle(const Date& date) {
    double interest = acc.getSum(date) * rate;
    if (interest != 0) record(date, interest, "interest");
    if (date.getMonth() == 1) record(date, -fee, "annual fee");
    acc.reset(date, getDebt());
}

void CreditAccount::show() const {
    Account::show();
    cout << "\tAvailable credit:" << getAvailableCredit();
}
View Code

task6.cpp

#include"account.h"
#include<iostream> 

using namespace std;

int main() {
    Date date(2008, 11, 1);
    SavingsAccount sa1(date, "S3755217", 0.015);
    SavingsAccount sa2(date, "02342342", 0.015);
    CreditAccount ca(date, "C5392394", 10000, 0.0005, 50);
    Account* accounts[] = { &sa1,&sa2,&ca };
    const int n = sizeof(accounts) / sizeof(Account*);
    cout << "(d)deposit (w)withdraw (s)show (c)change day (n)next month (e)exit" << endl;
    char cmd;
    do {
        date.show();
        cout << "\tTotal:" << Account::getTotal() << "\tcommand>";
        int index, day;
        double amount;
        string desc;
        cin >> cmd;
        switch (cmd) {
            case 'd':
                cin >> index >> amount;
                getline(cin, desc);
                accounts[index]->deposit(date, amount, desc);
                break;

            case 'w':
                cin >> index >> amount;
                getline(cin, desc);
                accounts[index]->withdraw(date, amount, desc);
                break;
            case 's':
                for (int i = 0; i < n; i++) {
                    cout << "[" << i << "]";
                    accounts[i]->show();
                    cout << endl;
                }
                break;

            case 'c':
                cin >> day;
                if (day < date.getDay()) {
                    cout << "You cannot specify a previous day";
                } else if (day > date.getMaxDay())
                    cout << "Invalid day";
                else date = Date(date.getYear(), date.getMonth(), day);
                break;
            case 'n':
                if (date.getMonth() == 12)
                    date = Date(date.getYear() + 1, 1, 1);
                else date = Date(date.getYear(), date.getMonth() + 1, 1);
                for (int i = 0; i < n; i++) {
                    accounts[i]->settle(date);
                }
                break;
        }
    } while (cmd != 'e');
    return 0;
}
View Code

结果截图

 

posted @ 2024-12-07 13:26  张欣颜  阅读(7)  评论(0编辑  收藏  举报