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

2021-10-08 01:59:06 字數 885 閱讀 6558

1.使用者輸入第幾個序號就彈出相應的內容

2.使用者輸入4時,退出switch,為了在退出switch後不再彈出請求,在switch外用 if 判定使用者輸入的序號是否為 4 等於 4 就退出整個迴圈

var money =

100;

// 已經有的錢

// 利用while迴圈 判斷(while 在判斷條件為真的時候才會執行)

while

(true

)else

break

;case3:

alert

('您的餘額為:'

+ money +

'元')

;break

;case4:

alert

('退出成功');

break

;default

:alert

('您輸入的不正確,請重新輸入');

break;}

// 只有在使用者輸入的是 4 的時候才能結束所有迴圈

if(input ==4)

// break; //這裡不能直接寫 break 直接寫會出現 當switch 結束以後會直接跳出while迴圈,所以要在最後判斷 使用者輸入的是4的時候在結束整個迴圈

}

var money =

100;

// 總錢數

for(

var i =

0; i >=

0; i++

)else

if(sum ==2)

else

if(sum ==3)

else

if(sum ==4)

else

}

簡單的ATM的訪問款

using system using system.collections.generic using system.linq using system.text namespace atm public bankcard string num,string pwd,string name,floa...

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 ...

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

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