- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
c程序设计—-工程的创建
// Lab 1: Account.cpp
// Member-function definitions for class Account.
#include iostream
using std::cout;
using std::endl;
#include Account.h // include definition of class Account
// Account constructor initializes data member balance
Account::Account( double initialBalance )
{
// if initialBalance is greater than or equal to 0.0, set this value
// as the balance of the Account
if ( initialBalance = 0.0 )
balance = initialBalance;
else // otherwise, output message and set balance to 0.0
{
cout Error: Initial balance cannot be negative. endl;
balance = 0.0;
} // end if...else
} // end Account constructor
// credit (add) an amount to the account balance
void Account::credit( double amount )
{
balance = balance + amount; // add amount to balance
} // end function credit
// debit (subtract) an amount from the account balance
// return bool indicating whether money was debited
bool Account::debit( double amount )
{
if ( amount balance ) // debit amount exceeds balance
{
cout Debit amount exceeded account balance. endl;
return false;
} // end if
else // debit amount does not exceed balance
{
balance = balance - amount;
return true;
} // end else
} // end function debit
// set the account balance
void Account::setBalance( double newBalance )
{
balance = newBalance;
} // end function setBalance
// return the account balance
double Account::getBalance()
{
return balance;
} // end function getBalance
/**************************************************************************
* (C) Copyright 1992-2005 by Deitel Associates, Inc. and *
* Pearson Education, Inc. All Rights Reserved. *
* *
* DISCLAIMER: The authors and publisher of this book have used their *
* best efforts in preparing the book. These efforts include the *
* development, research, and testin
您可能关注的文档
最近下载
- 老年慢性肌肉骨骼疼痛热敏灸技术规范.pdf VIP
- 行业标准《氧化锆、氧化铪化学分析方法 第13部分:氧化铪中硼、钠、镁、铝、硅、钙、钛、钒、铬、锰、铁、钴、镍、铜、锌、锆、铌、钼、镉、锡、锑、钽、钨、铅、铋含量的测定 电感耦合等离子体质谱法》编制说明(预审稿).docx VIP
- 人防通风控制箱.pdf VIP
- 关于医院“十五五”五年发展规划(2025年-2029年).docx VIP
- JTT - 危险货物道路运输营运车辆安全技术条件(1).docx VIP
- 关于医院“十五五”五年发展规划(2025年-2029年).pdf VIP
- 人工智能时代高职综合英语课程思政的融合与创新.pdf VIP
- 8-山东省商贸企业安全生产诊断分类分级指导标准.docx VIP
- 天气预报早会游戏.ppt VIP
- 工学一体化课程《小型网络管理与维护》任务2单元2教学单元活动方案.docx VIP
文档评论(0)