新微赢技术网
标题:
求助~~~不明白怎么弄了,请求帮改改。
[打印本页]
作者:
♀〓♂♀〓♂
时间:
2009-11-3 03:37
标题:
求助~~~不明白怎么弄了,请求帮改改。
编译能通过,可是运行结果不对……不知道问题所在。初学C++
#include <iostream>
#include <string>
using namespace std;
/*创建一个名为BankAccount的基类,*****
**它的数据成员包括帐户所有人姓名******
**(一个字符串,假定命名为name),****
**以及帐户余额(double值)balance。***
**在类中添加成员函数deposit和withdraw*
**并添加取值函数getName和getBalance。*
**deposit(存款),withdraw(取款)。*****
**存款将amount加到balance取款反之*/
class BankAccount
{
public:
BankAccount();
BankAccount(string the_name,double the_balance,double the_amount);
void set_name(string new_name);
void set_balance(double new_balance);
void set_amount(double new_amount);
string get_name() const;
double get_balance() const;
double get_amount() const;
void deposit();
//存款
void withdraw();
//取款
protected:
string name;
double balance;
double amount;
};
BankAccount::BankAccount():name("No name yet"),balance(0),amount(0)
{
//有意留空
}
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2