资源简介
用c++完成的简单的银行借贷管理系统
简单,对c++的学习应该会用帮助
代码片段和文件信息
#include “Asset.h“
void Asset::deleteAsset ()
//
// deletes an Asset
//
{
string input; // buffer for line of characters
bool done = false; // tells when user is done entering information
bool found = false; // tells when an investment has been found
char choice; // for storing user‘s response
while (!found && !done)
{
cout << “Please enter the number of the asset to be deleted (12 digits): “;
cin >> input;
found = find (input);
if (!found)
{
cout << “Asset “ << input << “ was not found.\n“;
cout << “Would you like to enter another number (y/n)? “;
cin >> choice;
if (choice == ‘n‘)
done = true;
}
}
if (!found)
return;
performDeletion ();
cout << “\nThe record has been deleted.“ << endl << endl;
cout << “Press to return to previous menu...“;
UserInterface::pressEnter();
} // deleteAsset ()
//----------------------------------------------------------------------------------------------------------------------------------------------------
void Asset::addAsset ()
//
// adds a new investment/mortgage
//
{
obtainNewData ();
save ();
cout << “\nThe following record was inserted:“ << endl << endl;
print ();
cout << endl << endl << “Press to return to previous menu...“;
UserInterface::pressEnter();
} // addAsset ()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3099 2005-09-12 01:51 Mortgage.h
文件 227 2005-09-12 00:13 MortgageReport.h
文件 966 2005-09-11 14:39 OperatingExpenses.h
文件 372 2005-09-10 22:15 stdafx.h
文件 633 2005-09-11 14:24 UserInterface.h
文件 1507 2005-09-19 16:38 Asset.cpp
文件 4724 2005-09-19 16:43 AssetManager.cpp
文件 428 2005-09-19 16:26 EstimatedFundsReport.cpp
文件 989 2005-09-12 02:00 EstimateFundsForWeek.cpp
文件 8167 2005-09-19 17:27 Investment.cpp
文件 1422 2005-09-19 16:32 InvestmentReport.cpp
文件 12235 2005-09-19 17:27 Mortgage.cpp
文件 1412 2005-09-19 16:58 MortgageReport.cpp
文件 374 2005-09-11 14:16 MSG.cpp
文件 2651 2005-09-11 14:36 OperatingExpenses.cpp
文件 290 2005-08-15 23:06 stdafx.cpp
文件 7034 2005-09-12 01:58 UserInterface.cpp
文件 789 2005-09-11 23:30 Asset.h
文件 299 2005-09-12 00:14 AssetManager.h
文件 295 2005-09-11 14:41 EstimatedFundsReport.h
文件 177 2005-09-11 14:41 EstimateFundsForWeek.h
文件 1875 2005-09-11 23:30 Investment.h
文件 235 2005-09-11 14:39 InvestmentReport.h
- 上一篇:mingw to_string()头文件
- 下一篇:用C++模拟直线插补图形
相关资源
- 用C++模拟直线插补图形
- 《C++ Primer Plus第6版中文版》源代码和
- 一个老师给的高斯投影正、反算c++源
- 物业管理系统c++ 课程设计源码
- WindowsCE或WM上C++加载显示GIF动画的程序
- 获取系统安装软件(vc++源码)
- C++ Primer Plus 6th 编程练习答案
- 用VC++实现图像连通区域标记
- C/C++语言实现求矩阵的广义逆
- 基于C++ builder 的文件传输代码
- 多边形拓扑关系算法C++程序
- VC6.0下开发的仿windows记事本-达尔魔记
- LZ77、LZ78对文件编译码
- 图像Susan角点检测算法代码非常稳健的
- microphone.zip
- c++实现ftp list所有文件与目录 & ftp d
- 置换密码的c++实现程序
- C++实现TIN
- c++模拟进程 解决c++中的难题
- C++ AVI播放器
- 自适应霍夫曼编码(C++)
- C++网络聊天室程序
- 实用Fourier变换及C++实现
- c++.win32.扫雷游戏代码
- 通讯录c++实现 功能:添加、删除、查
- 在VC++6.0中给对话框设置背景色或者背
- C++ MongoDB 连接池代码实现
- C++编写的后方交会程序
- BCB 调用WebService方法及常见问题排查
- fortran调用C++ dll
评论
共有 条评论