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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f1213.cpp
  3. // Type Conversions
  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);  a.add(s2);
  16.   a.add(c1);  a.add(c2);
  17.   Account* p;
  18.   if(p = a.find("3277")) p->deposit(100);
  19.   if(p = a.find("888"))  p->deposit(2000);
  20.   if(p = a.find("3279")) p->withdrawal(2500);
  21.   if(p = a.find("398"))  p->withdrawal(1555.5);
  22.   Checking* pC;
  23.   Savings* pS;
  24.   for(Node* p=a.getFirst(); p; p=p->next)
  25.     if(pC = dynamic_cast<Checking*>(&(p->acnt)))
  26.       pC->deposit(pC->Account::getBalan()*0.05);
  27.     else if(pS = dynamic_cast<Savings*>(&(p->acnt)))
  28.       pS->deposit(pS->Account::getBalan()*0.1);
  29.   a.display();
  30. }//====================================
  31.