📄 f1209.cpp
字号:
//=====================================
// f1209.cpp
// Isolated Classes
//=====================================
#include<iostream>
using namespace std;
#include"savings.h"
#include"checking.h"
//-------------------------------------
int main(){
Savings s1("3277",3000), s2("3279", 5000);
Checking c1("888"), c2("398", 10000);
s1.deposit(100);
c1.deposit(2000);
s2.withdrawal(2500);
c2.withdrawal(1555.5);
s1.display(); s2.display();
c1.display(); c2.display();
}//====================================
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -