当前位置: 首页>>代码示例>>C++>>正文


C++ BankAccount::show方法代码示例

本文整理汇总了C++中BankAccount::show方法的典型用法代码示例。如果您正苦于以下问题:C++ BankAccount::show方法的具体用法?C++ BankAccount::show怎么用?C++ BankAccount::show使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BankAccount的用法示例。


在下文中一共展示了BankAccount::show方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: main

int main ()
{
    BankAccount one{"Fist one", "Three hundre", 300};
    BankAccount two = BankAccount("Second two", "zero");
    BankAccount three = BankAccount();
    one.show();
    one.deposit(500);
    two.show();

    three = BankAccount("one million", "one million", 100000);
    three.show();
    three.withdraw(7852);
    three.show();
    one.show();
    return 0;
}
开发者ID:aoitori,项目名称:learning,代码行数:16,代码来源:10im.cpp

示例2: main

int main()
{
	using namespace Bank_Account;
	BankAccount Gavrila = BankAccount("Ivan Ivanov", "12345678q", 10000);
	std::cout << "Hello, let me tell you about myself" << std::endl;
	Gavrila.show();
	std::cin.get();
	std::cout << "One day I suddenly understood that someone accidently give me some cash. Look" << std::endl;
	std::cin.get();
	Gavrila.add_money(500);
	Gavrila.show();
	std::cin.get();
	std::cout << "I was so happy, that I started to buy expensive things" << std::endl;
	std::cin.get();
	std::cout << "Like this cat =^.^=" << std::endl;
	std::cin.get();
	Gavrila.retrieve_money(300);
	std::cin.get();
	std::cout << "Like these flowers @>--;-- @>--;-- @>--;-- @>--;--" << std::endl;
	std::cin.get();
	Gavrila.retrieve_money(500);
	std::cin.get();
	std::cout << "Like this bear (''')-.-(''')" << std::endl;
	std::cin.get();
	Gavrila.retrieve_money(8000);
	std::cin.get();
	std::cout << "And these pretty cats >^..^<   >'o'<   >^..^<" << std::endl;
	std::cin.get();
	Gavrila.retrieve_money(3000);
	std::cin.get();
	std::cout << "And finally I got broken" << std::endl;
	std::cin.get();
	Gavrila.show();
	std::cin.get();
	std::cout << "Sad story =(" << std::endl;
	return 0;
}
开发者ID:Zaytceva,项目名称:cpp.fundamentals,代码行数:37,代码来源:main.cpp


注:本文中的BankAccount::show方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。