我正在做一个简单的银行系统,在这个系统中我正在做account creation
创建新帐户的方法。
当客户进入时,要创建新帐户,他必须输入他的个人数据。
我知道这个问题既愚蠢又简单。
问题是当客户输入他的信息时,应该显示如下数据。
您的名字:(并等待客户输入)
您的姓氏:(等待客户输入)
您的年龄:(并等待客户输入)
您的地址:(并等待客户输入)
自然发生在上面,但发生的事情不是那样的。
发生的情况如下。
Your First name: (doesn't waits client inputs then continue ) Your last name: (and waits for client input).
Your age: (waits for client input) .
Your address: (doesn't waits client inputs then continue ) press any key to continue . . .
发生的事情与上图完全相同。
我没有放所有的代码,但我只添加了重要的代码。
// this struct to store the client information.
struct bc_Detail{
char cFistName[15];
char cLastName[15];
unsigned short usAge;
char cAddress[64];
};
// create an account
class Account_Create {
private:
int nAccountNumber; // account number
time_t nCreationDate; // date of join
int nBalance; // The amount of money
bc_Detail client; // instance of bc_Detail to store client info
public:
void createAccount(); // to create the account
};
// contents of create account method
void Account_Create::createAccount(){
std::cout << "Your First name: ";
std::cin.getline(client.cFistName, 15);
std::cout << "Your last name: ";
std::cin.getline(client.cLastName, 15);
std::cout << "Your age: ";
std::cin >> client.usAge;
std::cout << "Your address: ";
std::cin.getline(client.cAddress, 64);
}
int main(){
Account_Create create;
create.createAccount();
return 0;
}