Visual C++ 6.0
本次实验有如下四条需求:
(1)要求程序界面友好且能对操作是否成功进行判断;
(2)要求输入密码时以星号(***)显示;
(3)要求存取款只能以整百金额进行,并对出现的各种情况进行判断;
(4)要求转账时只能对于已有的五个账号(1234567891234567891……)操作。
根据以上四点需求,至少应有菜单(Menu)、输入密码(GetCode)、判断金额(GetInt)和转账判断(Transfer)四个功能函数。除此以外,现实中的ATM机实质上是用户在和银行交互时的接口,在功能执行时通过“银行卡”获取操作权限并记录操作信息。由此,本次实验中除设计完成ATM机类的设计之外,还应设计完成对于“银行卡”(Card)类的设计。
功能上,现实中的ATM机可执行存款(Save)、取款(Deposit)、查询余额(Dispaly)、检查密码(Check)等基本功能,还可以对初次使用的银行卡进行激活,则在ATM类中至少需要以上几个功能函数。
此外,现实中的ATM机上有一个读取银行卡信息的接口,此接口可以读取当前用户所持卡的信息,并对其中的部分信息进行更改,还能对信息起到一定程度的保密作用。ATM和当前卡二者间的关系在实质上是ATM机“包含”或者“有”(has)当前银行卡,将此种现实关系映射到在本实验中,即表现为ATM机和当前卡的继承关系。由此,可在ATM机中设置一个私有的(private)数据成员当前卡(TheCard),其为一个卡(Card)类的对象。“读卡”这一操作则可通过赋值进行。
另外,现实中用户对于ATM机的操作,是通过面板上的各类按钮实现的。在程序设计时,则可直接将其简化为输入环节,通过显示界面提示用户进行其他操作。
现实中的银行卡是用户账户信息的物质载体,由于本实验并不考虑其物理性质,则可将卡等同于账户以简化问题。尽管实际中的卡不需要任何操作功能,可以使用结构体(struct)实现,但实验中设计的程序中需要在保护其中数据的同时对其数据执行操作,选择类(class)更为合适。
值得注意的是,前文中提到的ATM类和卡类的继承关系只针对卡类的特定对象,而且实际上只在特定时刻(即用户登录成功后)此种继承关系才成立,因而在此只对“所有卡”的共性加以分析。同时,由于本实验中存在多个卡的对象,还需要考虑其储存方式和使用方式。
从数据角度考虑,卡类所承载的账户信息仅包含其账号(AccountNum)、密码(Code)、余额(Balance),其中账号的数据类型为字符串(string)类型,而密码和余额都为整型(int)。
在存储结构的选择上,由于使用过程中不可避免地要对卡类的特定对象进行操作,且操作时不能更改其他对象的内容,可选择链表作为卡类对象存储时的数据结构。则还需在卡类中添加对链表操作的功能函数。
对于用户,其账户信息存储在卡当中,所以定义Card 类对其信息进行处理,而卡本身只能进行读写和查找。
class Card
{
public:
Card () ;
Card * Creat () ; //生成链表的函数
Card * Search ( string ) ; //查找函数
void SetCode (string ) ; //设置密码
void Open ( string , string ) ;//设置账户和密码(开户)
int GetBalance () ; //返回余额(只读函数)
void SetNum ( int ) ; //设置密码(只写函数)
void Reset ( int a , string b ) ;//对特定账户写入余额
string GetCode () ; //返回密码(只读函数)
string GetAccount () ; //返回账号(只读函数)
private:
string AccountNum; //账号
string Code; //密码
int Balance; //余额
Card * Next; //指向下一个卡的指针(链表)
};
class ATM
{
public:
ATM ( Card * ) ; //构造函数,执行“读卡”功能
int CheckCode ( string ) ; //检查密码
void Save ( int ) ; //存款
void Deposite ( int ) ; //取款
void Transfer (Card * , int) ; //转账
void Change ( string ) ; //修改密码
bool Check ( string Code ) ; //检查密码
void Display () ; //显示余额
int GetB () ; //返回余额
string GetC () ; //返回密码
private:
Card * users ; //私有数据,指向Card的指针,“接口”
};
P.S. 建议输出用正则表达式控制一下,要不会很难看……
#include<iostream>
#include<string>
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
using namespace std;
int GetInt () ;
string GetAcc () ;
string GetCode () ;
class Card
{
public:
Card () ;
Card * Creat () ;
Card * Search ( string ) ;
void SetCode (string ) ;
void Open ( string , string ) ;
int GetBalance () ;
void SetNum ( int ) ;
void Reset ( int a , string b ) ;
string GetCode () ;
string GetAccount () ;
private:
string AccountNum;
string Code;
int Balance;
Card * Flag;
Card * Next;
};
Card :: Card ()//生成头结点
{
AccountNum = " 0 " ;
Balance = 0 ;
Code = "0" ;
Next = NULL ;
Flag = NULL ;
}
Card HEAD ;
int Card :: GetBalance ()
{
return Balance ;
}
string Card :: GetCode ()
{
return Code ;
}
string Card :: GetAccount ()
{
return AccountNum ;
}
void Card :: SetNum ( int i )
{
Balance = i ;
}
void Card::Open ( string x , string y )
{
AccountNum = x ;
Code = y ;
Balance = 0 ;
}
Card * Card :: Creat ()//生成新节点
{
Card * temp = new Card ;
if ( temp == NULL )
cout << endl << "内存不足,请重新操作" << endl ;
else
temp -> Next = Next ;
Next = temp ;
return temp ;
}
Card * Card :: Search ( string aim )
{
Card * p = this;
Card * q = p;
while ( p -> Next != NULL )
{
if ( p -> AccountNum == aim )
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 账户信息有效 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
cout << endl << "" << endl ;
Flag = q -> Next ;
return Flag ;
}
else
{
q = p ;
p = p -> Next ;
}
}
if ( p -> Next == NULL )
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 没有找到账号 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
return NULL;
}
}
void Card :: SetCode (string now)
{
Code = now ;
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 修改成功,请继续 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
}
void Card :: Reset ( int a , string b )
{
Balance = a;
Code = b ;
}
class ATM
{
public:
ATM ( Card * ) ;
int CheckCode ( string ) ;
void Save ( int ) ;
void Deposite ( int ) ;
void Transfer (Card * , int) ;
void Change ( string ) ;
bool Check ( string Code ) ;
void Display () ;
int GetB () ;
string GetC () ;
private:
Card * users ;
};
int menu ( ATM & );
ATM :: ATM ( Card * now )
{
users = now ;
}
int ATM :: GetB ()
{
return ( * users ) . GetBalance() ;
}
string ATM :: GetC ()
{
return ( * users ) . GetCode() ;
}
int ATM :: CheckCode ( string Code )
{
int i = 1 ;
for ( i = 1 ; i < 3 ; i ++ )
{
if ( Check ( Code ) )
return 1 ;
else
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 密码错误,请重新输入 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
Code = GetCode () ;
continue ;
}
}
if( i == 3)
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 错误密码超过三次,已吞卡 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
exit ( 0 ) ;
}
}
bool ATM :: Check ( string Code )
{
if( (* users) . GetCode() == Code )
{
cout <<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<" "<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 密码正确,请继续 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
return true ;
}
else
return false ;
}
void ATM :: Save ( int amount )
{
int i = ( * users ) . GetBalance() + amount ;
( * users) . SetNum(i);
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<< " 存款成功,您的余额为:"
<< ( * users ) . GetBalance() << endl
<<"| 请继续 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
}
void ATM :: Deposite ( int amount )
{
int i = ( * users ) . GetBalance() - amount ;
if( i >= 0 )
{
( * users ) . SetNum(i);
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<< " 取款成功,您的余额为:"
<< ( * users ) . GetBalance() << endl
<<"| 请继续 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
}
else
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 余额不足,请重新输入 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
}
void ATM :: Transfer (Card * aim , int amount )
{
int i = ( * users ) . GetBalance () - amount ;
int j = ( * aim ) . GetBalance () + amount ;
if ( ( * aim ) . GetAccount () != ( * users ) . GetAccount () )
{
if ( i >= 0 )
{
( * aim ) . SetNum ( j ) ;
( * users ) . SetNum ( i ) ;
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<< " 转账成功" << endl
<< " 您的余额为:"
<< ( * users) . GetBalance () << endl
<< " 对方的余额为:"
<< ( * aim ) . GetBalance () << endl
<< " 请继续 " << endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
}
else
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 余额不足,请重新输入 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
}
else
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 您不能对自己转账,请继续 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
}
void ATM :: Change ( string now )
{
( * users) . SetCode ( now ) ;
}
void ATM :: Display ()
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 您的余额为"<< ( * users ) . GetBalance ()
<<" |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
}
string GetAcc ()
{
string i = " " ;
while ( 1 )
{
if ( !( cin >> i) || i.length() != 19 )
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 输入错误,请输入19位字符 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
cin.clear();
while ( cin.get() != '\n' )
{ continue ; }
cin.sync() ;
}
else
return i ;
}
}
int GetInt ()
{
int i = 0 ;
while ( 1 )
{
if ( !(cin>>i) || i == 0)
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 输入错误,请重新输入数字 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
cin.clear();
while ( cin.get() != '\n')
{ continue; }
cin.sync() ;
}
else
return i ;
}
}
string GetCode ()
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 请输入您的密码 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
char x = '0' ;
string code = "123456" ;
int i = 0;
for ( i=0 ; i<6 ; i++ )
{
x = getch () ;
if ( x == '\n' )
break ;
else
cout << "*" ;
code . at ( i ) = x ;
}
cout << endl ;
return code ;
}
void MainSave ( ATM & atm )
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 请输入存款金额,谢谢 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
int i = GetInt() ;
if ( i % 100 == 0 )
atm . Save ( i ) ;
else
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 请输入整百数据,谢谢 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
}
void MainDeposite ( ATM & atm)
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 请输入取款金额 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
int i = GetInt() ;
if ( i % 100 == 0 )
atm . Deposite ( i ) ;
else
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 请输入整百数据,谢谢 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
}
void MainTransfer ( ATM & atm )
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 请输入对方号码 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
string i = "6666666666666666666";
i = GetAcc () ;
Card * p = HEAD . Search ( i ) ;
if( i >= " 1234567891234567891 " && i <= "1234567891234567895" || p != NULL )
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 请输入转账金额 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
cout << endl << "" << endl ;
int k = GetInt () ;
atm . Transfer ( p , k ) ;
}
else
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 没有找到账号,请重新选择 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
}
}
void MainChange ( ATM & atm )
{
int i = 0 ;
cout << endl << "请输入原密码" << endl ;
string last = GetCode() ;
if ( atm . CheckCode ( last ) )
{
for ( i = 0 ; i < 3 ; i ++)
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 请输入新密码 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
string now1 = GetCode() ;
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 请确认您的新密码 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
string now2 = GetCode () ;
if ( now1 == now2 )
{
atm . Change (now1) ;
break;
}
else
continue ;
}
if ( i == 3)
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 错入输入过多,请稍后操作 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
}
}
int Action ( int act , ATM & atm)
{
if ( act == 1 )
MainSave ( atm ) ;
if ( act == 2 )
MainDeposite ( atm ) ;
if ( act == 3 )
MainTransfer ( atm ) ;
if ( act == 4 )
MainChange ( atm ) ;
if ( act == 5)
atm . Display () ;
if ( act == 6)
return 1;
if ( act == 7 )
return 0 ;
else
menu ( atm ) ;
}
int menu ( ATM & atm )
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 请选择您需要执行的操作 |"<< endl
<<"| 1.存 款 |"<< endl
<<"| 2.取 款 |"<< endl
<<"| 3.转 账 |"<< endl
<<"| 4.修改密码 |"<< endl
<<"| 5.查询余额 |"<< endl
<<"| 6.退 卡 |"<< endl
<<"| 7.退出程序 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl<<endl ;
int act = GetInt() ;
if ( act < 1 || act > 7)
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 请输入正确的编号 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
menu ( atm ) ;
}
if ( act == 6 )
return 1 ;
if ( act == 7)
return 0 ;
if ( Action ( act , atm ) )
return 1 ;
}
string Firstmenu ()
{
cout<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 欢迎使用虚拟ATM |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 请输入您的卡号 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl <<endl;
string i = GetAcc();
return i ;
}
void List ()
{
string acc = "1234567891234567890" ;
string code = "000000" ;
int i = 0;
for ( i = 0 ; i < 6 ; i ++ )
{
Card * p = HEAD . Creat () ;
(*p) . Open (acc,code) ;
acc . at ( 18 ) ++ ;
}
}
int main ()
{
List () ;
Card * current= NULL ;
string Acc = "0000000000000000000" ;
string Code = "000000";
int flag = 2 ;
while ( flag != 0 )
{
Acc = Firstmenu () ;
Code = GetCode () ;
current = HEAD . Search ( Acc ) ;
if ( current == NULL )
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 初次使用卡片,已为您激活 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
HEAD . Open ( Acc , Code ) ;
current = HEAD . Search ( Acc ) ;
}
ATM atm ( current ) ;
if ( atm . CheckCode ( Code ) )
{
flag = menu ( atm ) ;
}
(*HEAD . Search ( Acc )) . Reset ( atm . GetB () , atm . GetC () );
if ( flag == 0 )
{
cout << endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl
<<"| |"<< endl
<<"| 谢谢使用,再会 |"<< endl
<<"| |"<< endl
<<"*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"<< endl << endl ;
cout << endl << "" << endl;
exit ( 0 ) ;
}
}
return 0 ;
}