1樓:匿名使用者
思路:建立使用者表,儲存基礎資訊
使用者帳戶表,儲存帳戶基礎資訊
使用者賬單表,儲存帳戶收支明細——下可設定具體明細表每次取款時核對帳戶資訊,檢查帳戶餘額,取出金額後減少帳戶餘額,增加帳戶收支明細資訊
c#中如何實現 mybank系統的轉帳方法?
2樓:使用者名稱是啥東西
先建幾張表吧,
賬號表 card_info:id cardid pwd username account createtime
交易流水錶 trade_info:id fromcardid tocardid tradetype createtime createby(id自動增長,fromcardid流出卡 tocardid流入卡 createtime交易時間 createby交易地點 tradetype交易型別)
先實現登陸:
string sql="select * from card_info where cardid='"+this.card.text+"' and pwd='"+this.
pwd.text+"'";
//連線查詢**略
datatable dt=....
if(dt.rows.count==0)
//如果賬號密碼對不上,提示錯誤資訊,也可以加統計n次禁止登陸
else
if(this.account.text.trim()=="" || double.parse(this.account.text)<=0)
//轉賬金額不合法
else
if(double.parse(this.account.text)>double.parse(dt.rows[0]["account"].tostring()))
//餘額不足
else
sql="select * from card_info where cardid='"+this.tocard.text+"' ";//校驗目標卡是否存在。
datatable dtto=....
if(dtto.rows.count==0)
//目標卡號不存在
else
//顯示目標卡使用者姓名,詢問是否確認交易,如果是,則用事務插入流水錶並扣除本賬號的金額,增加目標賬戶的金額。如果發生錯誤,則撤銷該事務,保證金額統一。篇幅有限,**略
c#實現mybank系統的查詢餘額功能 50
3樓:匿名使用者
這個程式的**都沒發,怎麼知道怎麼寫,寫在哪?
求c# 銀行mybank系統 要求有 開戶、取款、存款、轉賬、查詢餘額,要求用類 方法寫出來
4樓:米色長裙
定義一個類,類中有開戶、取款、存款、轉賬、查詢餘額屬性,然後在方法中例項化類就可以取得相應的屬性就可以用了啊
打字不易,如滿意,望採納。
用c#編寫一個銀行取款模擬系統 30
5樓:匿名使用者
#include
#include
double qu(double dbye)else
}else
}return dbye;
}double cun(double dbcun)double cha(double dbye)void main()
;char pw[20]=;
char sid[20]=;
char spw[20]=;
while(na==1)
nb=1;
while(nb==1)
case 2:
case 3:
case 4:
case 5:
default:}}
}}普通的~~
6樓:
樓上c++哦
大一做過,呵呵。
7樓:匿名使用者
...... -_#
用c#設計銀行取款模擬系統 20
8樓:匿名使用者
#include
#include
double qu(double dbye)else
}else
}return dbye;
}double cun(double dbcun)double cha(double dbye)void main()
;char pw[20]=;
char sid[20]=;
char spw[20]=;
while(na==1)
nb=1;
while(nb==1)
case 2:
case 3:
case 4:
case 5:
default:}}
}}看可以不?
c#實現簡單atm取款功能
9樓:
console.read();改成choice = char.parse(console.readline());
10樓:匿名使用者
換成do... while...
11樓:匿名使用者
你的這一句永遠執行不到得:case'x':
console.writeline();
break;
c怎麼實現獲取實時星期,c 怎樣獲取系統星期幾?
血祭狂刀 datetime now datetime.now int n int now.dayofweek string weekdays messagebox.show weekdays n 波帥168668 同學,你那裡應該用switch的. 大圈科技學霸推薦 這個沒辦法 獲取出來的就是英文 ...
C中怎麼用foreach實現逆序輸出
太easy了,string有倒序方法,直接輸出就可以了,不用foreach對每個字串做輸出,除非你在處理中間對每個字元還有其它處理。如下 string str asdf123 char chararray str.toarray array.reverse chararray string reve...
線性表的順序儲存結構用C 實現
線性表的順序儲存結構用c 實現 include pch.h include include define data int typedef int data struct snode snode g phead null void addhead data data void print print...