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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f1212.cpp
  3. // Using Self-defined List Class
  4. //=====================================
  5. #include<iostream>
  6. using namespace std;
  7. #include"savings_bro.h"
  8. #include"checking_bro.h"
  9. #include"accountlist.h"
  10. //-------------------------------------
  11. int main(){
  12.   Savings s1("3277",3000), s2("3279", 5000);
  13.   Checking c1("888"), c2("398", 10000);
  14.   AccountList a;
  15.   a.add(s1);
  16.   a.add(s2);
  17.   a.add(c1);
  18.   a.add(c2);
  19.   Account* p;
  20.   if(p = a.find("3277")) p->deposit(100);
  21.   if(p = a.find("888"))  p->deposit(2000);
  22.   if(p = a.find("3279")) p->withdrawal(2500);
  23.   if(p = a.find("398"))  p->withdrawal(1555.5);
  24.   a.display();
  25. }//====================================
  26.