8_8

C++源码:

//8_8.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;
}

//account.h
#ifndef __ACCOUNT_H__
#define __ACCOUNT_H__
#include "date.h"
#include "accumulator.h"
#include <string>

class Account { //账户类
private:
	std::string id;	//帐号
	double balance;	//余额
	static double total; //所有账户的总金额
protected:
	//供派生类调用的构造函数,id为账户
	Account(const Date &date, const std::string &id);
	//记录一笔帐,date为日期,amount为金额,desc为说明
	void record(const Date &date, double amount, const std::string &desc);
	//报告错误信息
	void error(const std::string &msg) const;
public:
	const std::string &getId() const { return id; }
	double getBalance() const { return balance; }
	static double getTotal() { return total; }
	//存入现金,date为日期,amount为金额,desc为款项说明
	virtual void deposit(const Date &date, double amount, const std::string &desc) = 0;
	//取出现金,date为日期,amount为金额,desc为款项说明
	virtual void withdraw(const Date &date, double amount, const std::string &desc) = 0;
	//结算(计算利息、年费等),每月结算一次,date为结算日期
	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 std::string &id, double rate);
	double getRate() const { return rate; }
	virtual void deposit(const Date &date, double amount, const std::string &desc);
	virtual void withdraw(const Date &date, double amount, const std::string &desc);
	virtual 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 std::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;
	}
	virtual void deposit(const Date &date, double amount, const std::string &desc);
	virtual void withdraw(const Date &date, double amount, const std::string &desc);
	virtual void settle(const Date &date);
	virtual void show() const;
};

#endif //__ACCOUNT_H__

//account.cpp
#include "account.h"
#include <cmath>
#include <iostream>
using namespace std;

double Account::total = 0;

//Account类的实现
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::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) {
	if (date.getMonth() == 1) {	//每年的一月计算一次利息
		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::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();
}

//accumulator.h
#ifndef __ACCUMULATOR_H__
#define __ACCUMULATOR_H__
#include "date.h"

class Accumulator {	//将某个数值按日累加
private:
	Date lastDate;	//上次变更数值的时期
	double value;	//数值的当前值
	double sum;		//数值按日累加之和
public:
	//构造函数,date为开始累加的日期,value为初始值
	Accumulator(const Date &date, double value)
		: lastDate(date), value(value), sum(0) { }

	//获得到日期date的累加结果
	double getSum(const Date &date) const {
		return sum + value * (date - lastDate);
	}

	//在date将数值变更为value
	void change(const Date &date, double value) {
		sum = getSum(date);
		lastDate = date;
		this->value = value;
	}

	//初始化,将日期变为date,数值变为value,累加器清零
	void reset(const Date &date, double value) {
		lastDate = date;
		this->value = value;
		sum = 0;
	}
};

#endif //__ACCUMULATOR_H__

//date.h
#ifndef __DATE_H__
#define __DATE_H__

class Date {	//日期类
private:
	int year;		//年
	int month;		//月
	int day;		//日
	int totalDays;	//该日期是从公元元年1月1日开始的第几天

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;
	}
};

#endif //__DATE_H__

//date.cpp
#include "date.h"
#include <iostream>
#include <cstdlib>
using namespace std;

namespace {	//namespace使下面的定义只在当前文件中有效
	//存储平年中某个月1日之前有多少天,为便于getMaxDay函数的实现,该数组多出一项
	const int DAYS_BEFORE_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_BEFORE_MONTH[month - 1] + day;
	if (isLeapYear() && month > 2) totalDays++;
}

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

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

Java转码:

import java.util.Scanner;
public class Run {
	public static void main(String[] args) {
		Date date=new Date(2008, 11, 1);	//起始日期
		//建立几个账户
		SavingsAccount sa1=new SavingsAccount(date, "S3755217", 0.015);
		SavingsAccount sa2=new SavingsAccount(date, "02342342", 0.015);
		CreditAccount ca=new CreditAccount(date, "C5392394", 10000, 0.0005, 50);
		Account[] accounts= { sa1, sa2, ca };
		int n = accounts.length;	//账户总数

		System.out.print("(d)deposit (w)withdraw (s)show (c)change day (n)next month (e)exit");
		String cmd;
		Scanner input=new Scanner(System.in);
		do {
			//显示日期和总金额
			date.show();
			System.out.print("\tTotal: "+Account.getTotal()+"\tcommand> ");

			int index, day;
			double amount;
			String desc;

			cmd=input.next();
			switch (cmd) {
			case "d":	//存入现金
				index=input.nextInt();
				amount=input.nextDouble();
				desc=input.next();
				accounts[index].deposit(date, amount, desc);
				break;
			case "w":	//取出现金
				index=input.nextInt();
				amount=input.nextDouble();
				desc=input.next();
				accounts[index].withdraw(date, amount, desc);
				break;
			case "s":	//查询各账户信息
				for (int i = 0; i < n; i++) {
					System.out.print("[" + i + "] ");
					accounts[i].show();
					System.out.println();
				}
				break;
			case "c":	//改变日期
				day=input.nextInt();
				if (day < date.getDay())
					System.out.print("You cannot specify a previous day");
				else if (day > date.getMaxDay())
					System.out.print("Invalid day");
				else
					date = new Date(date.getYear(), date.getMonth(), day);
				break;
			case "n":	//进入下个月
				if (date.getMonth() == 12)
					date = new Date(date.getYear() + 1, 1, 1);
				else
					date = new Date(date.getYear(), date.getMonth() + 1, 1);
				for (int i = 0; i < n; i++)
					accounts[i].settle(date);
				break;
			}
		} while (cmd != "e");
		input.close();
	}
}


abstract public class Account {
	private String id;
	private double balance;
	private static double total;
	
	protected Account(Date date,String id) {
		this.id=id;
		this.balance=0;
		date.show();
		System.out.println("\t#"+id+" created");
	}
	
	protected void record(Date date,double amount,String desc) {
		amount =Math.floor(amount*100+0.5)/100;
		balance+=amount;
		total+=amount;
		date.show();
		System.out.println("\t#"+id+"\t"+amount+"\t"+balance+"\t"+desc);
	}
	
	protected void error(String msg) {
		System.out.println("Error(#"+id+"): "+msg);
	}
	
	public String getId() {
		return this.id;
	}
	
	public double getBalance() {
		return this.balance;
	}
	
	public static double getTotal() {
		return total;
	}
	
	public void show() {
		System.out.print(id+"\tBalance: "+balance);
	}
	
	abstract public void deposit(Date date,double amount,String desc);
	
	abstract public void withdraw(Date date,double amount,String desc);
	
	abstract public void settle(Date date);
}


public class Accumulator {
	private Date lastDate;
	private double value;
	private double sum;
	
	public Accumulator(Date date,double value) {
		this.lastDate=date;
		this.value=value;
		this.sum=0;
	}
	
	public double getSum(Date date) {
		return sum+value*date.distance(lastDate);
	}
	
	public void change(Date date,double value) {
		sum=getSum(date);
		lastDate=date;
		this.value=value;
	}
	
	public void reset(Date date,double value) {
		lastDate=date;
		this.value=value;
		sum=0;
	}
}


public class CreditAccount extends Account {
	private Accumulator acc;
	private double credit;
	private double rate;
	private double fee;
	
	private double getDebt() {
		double balance=getBalance();
		return (balance<0? balance:0);
	}
	
	public CreditAccount(Date date,String id,double credit,double rate,double fee) {
		super(date,id);
		this.rate=rate;
		acc=new Accumulator(date,0);
		this.credit=credit;
		this.fee=fee;
	}
	
	public double getCredit() {
		return credit;
	}
	
	public double getRate() {
		return rate;
	}
	
	public double getFee() {
		return fee;
	}
	
	public double getAvailableCredit() {
		if(getBalance()<0) {
			return credit+getBalance();
		}else {
			return credit;
		}
	}
	
	public void deposit(Date date,double amount,String desc) {
		record(date,amount,desc);
		acc.change(date, getDebt());
	}
	
	public void withdraw(Date date,double amount,String desc) {
		if(amount-getBalance()>credit) {
			error("not enough credit");
		}else {
			record(date,-amount,desc);
			acc.change(date, getDebt());
		}
	}
	
	public void settle(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());
	}
	
	public void show() {
		super.show();
		System.out.println("\tAvailable credit:"+getAvailableCredit());
	}
}


public class Date {
	private int year;
	private int month;
	private int day;
	private int totalDays;
	final public int  DAYS_BEFORE_MONTH[] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 };
	
	public Date(int year,int month,int day) {
		this.day=day;
		this.year=year;
		this.month=month;
		if(day<=0||day>getMaxDay()) {
			System.out.println("Invalid date: ");
			show();
			System.out.println();
			System.exit(1);
		}
		int years = year - 1;
		totalDays = years * 365 + years / 4 - years / 100 + years / 400
			+ DAYS_BEFORE_MONTH[month - 1] + day;
		if (isLeapYear() && month > 2) totalDays++;
	}
	
	public int getYear() {
		return year;
	}
	
	public int getMonth() {
		return month;
	}
	
	public int getDay() {
		return day;
	}
	
	public int getMaxDay() {
		if(isLeapYear()&&month==2) {
			return 29;
		}else {
			if(month>0) {
				return DAYS_BEFORE_MONTH[month]-DAYS_BEFORE_MONTH[month-1];
			}else {
				return 0;
			}
		}
	}
	
	public boolean isLeapYear() {
		return ((year%4==0)&&(year%100!=0||year%400==0));
	}
	
	public void show() {
		System.out.print(getYear()+"-"+getMonth()+"-"+getDay());
	}
	
	public int distance(Date date) {
		return totalDays-date.totalDays;
	}
}


public class SavingsAccount extends Account{
	private Accumulator acc;
	private double rate;
	
	public SavingsAccount(Date date,String id,double rate) {
		super(date,id);
		this.rate=rate;
		acc=new Accumulator(date,0);
		
	}
	
	public double getRate() {
		return rate;
	}
	
	public void deposit(Date date,double amount,String desc) {
		record(date,amount,desc);
		acc.change(date,getBalance());
	}
	
	public void withdraw(Date date,double amount,String desc) {
		if(amount>getBalance()) {
			error("not enough money");
		}else {
			record(date,-amount,desc);
			acc.change(date,getBalance());
		}
	}
	
	public void settle(Date date) {
		double interest=acc.getSum(date)*rate/date.distance(new Date(date.getYear()-1,1,1));
		if(interest!=0) {
			record(date,interest,"interest");
		}
		acc.reset(date,getBalance());
	}
}

笔记:C++源码较之前的改变是用到了抽象类,编写了简单的菜单操作界面,通过用户的输入来操纵程序的运行,还有一些细小的代码优化,如:用数组来储存账户。在转码过程中,编写抽象类Account时,要注意Java和C++不同没有虚函数和纯虚函数之分,Java抽象类中被abstract修饰的方法叫抽象方法,相当于C++中的纯虚函数,抽象方法不能有自己的具体定义,否则IDE会报错(Abstract methods do not have specify body),所以改写Account类的show()方法时不能在前加abstract。还有一点要注意的是在Java中输入我用到了Scanner类,在创建其对象时不要在循环体内,否则会报出异常:在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值