熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> 操作系統 >> 正文

十大題型算法全實現——(九)銀行家算法[10]

2022-06-13   來源: 操作系統 

  cout<

  cout<<" ┏━━━━━━━━━━━━━━━━━━━━━━━┓"<

  cout<<" ┃        銀 行 家 算 法         ┃"<

  cout<<" ┠───────────────────────┨"<

  cout<<" ┃   (c)All Right Reserved Neo       ┃"<

  cout<<" ┃      sony006@163.com          ┃"<

  cout<<" ┃     version 2004 build 1122      ┃"<

  cout<<" ┗━━━━━━━━━━━━━━━━━━━━━━━┛"<

  cout<

  }

  void main()

  {

  int chioce;

  int flag=1;

  initial();

  version();

  while(flag){

  cout<<"━━━━━━━━━━━━━━━━━━━━━━━━━━━━"<

  cout<<"1.新加作業 2.為作業申請資源 3.撤消作業"<

  cout<<"4.查看資源情況 0.退出系統"<

  cout<<"請選擇:";

  cin>>chioce;

  switch(chioce){

  case 1:

  add();

  break;

  case 2:

  bid();

  break;

  case 3:

  finished();

  break;

  case 4:

  view();

  break;

  case 0:

  flag=0;

  break;

  default:

  cout<<"選擇錯誤"<

  }

  }

  }

[1]  [2]  [3]  [4]  [5]  [6]  [7]  [8]  [9]  [10]  


From:http://tw.wingwit.com/Article/program/czxt/201311/24036.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.