簡單的ATM的訪問款

2021-06-02 02:37:26 字數 1442 閱讀 4019

using system;

using system.collections.generic;

using system.linq;

using system.text;

namespace atm

public bankcard(string num, string pwd, string name, float money)

}class program

public static int checknum()

}return -1;

}public static bool checkpwd(int b)

else

}while (count < 3);

return false;

}public static void getmoney(int b)

else

console.writeline("你的餘額不足!");

break;

case '2':

if (a[b].money > 300)

else

console.writeline("你的餘額不足!");

break;

case '3':

if (a[b].money > 500)

else

console.writeline("你的餘額不足!");

break;

case '4':

int money2;

dowhile (money2 % 100 != 0 || money2 > 3000);

if (a[b].money > money2)

else

console.write("你的餘額不足!");

break;

default:

console.write("你的輸入有誤!");

break;}}

public static void chaxun(int b)

public static void zhuanzhang(int b)

else

console.write("你的餘額不足!");

flag = true;

break;

}else

flag = false;

}} while (flag == false);

}public static void xiugaimima()

//else

// console.write("兩次輸入密碼不一致!");

}public static void welcome(int b)

}static void main(string args)

}else

environment.exit(0);//退出}}

}

c 模擬ATM的訪問款以及查詢功能

一波三折才寫出來這個系統,第一遍寫完發現自己實現的功能和老師要求的功能完全不一樣,做完又熬夜寫出來,今天把錯誤給改了一遍,發現自己還是很多知識點沒有掌握,對很多概念不清楚,很多bug改不出來就換一種方式來寫,自己的計數有待提高。如下 include include include include i...

ATM自動訪問款系統(第二版)

include include include struct node s 20 int k 0 int count 0 主選單 void showmain 隱藏輸入密碼並且判斷輸入密碼格式是否有誤 int secret int j if ch 0 ch 9 else printf for i 6 ...

迴圈實現簡易Atm訪問款查詢餘額案例

1.使用者輸入第幾個序號就彈出相應的內容 2.使用者輸入4時,退出switch,為了在退出switch後不再彈出請求,在switch外用 if 判定使用者輸入的序號是否為 4 等於 4 就退出整個迴圈 var money 100 已經有的錢 利用while迴圈 判斷 while 在判斷條件為真的時候...