f1209.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f1209.cpp
  3. // Isolated Classes
  4. //=====================================
  5. #include<iostream>
  6. using namespace std;
  7. #include"savings.h"
  8. #include"checking.h"
  9. //-------------------------------------
  10. int main(){
  11.   Savings s1("3277",3000), s2("3279", 5000);
  12.   Checking c1("888"), c2("398", 10000);
  13.   s1.deposit(100);
  14.   c1.deposit(2000);
  15.   s2.withdrawal(2500);
  16.   c2.withdrawal(1555.5);
  17.   s1.display(); s2.display();
  18.   c1.display(); c2.display();
  19. }//====================================
  20.