写一个C++的登陆系统
时间: 2023-08-17 18:05:15 浏览: 85
好的,以下是一个简单的C++登陆系统的示例代码:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string username, password;
cout << "请先注册账号:" << endl;
cout << "请输入用户名:";
cin >> username;
cout << "请输入密码:";
cin >> password;
cout << "注册成功,请登录:" << endl;
string input_username, input_password;
while (true) {
cout << "请输入用户名:";
cin >> input_username;
cout << "请输入密码:";
cin >> input_password;
if (input_username == username && input_password == password) {
cout << "登录成功!" << endl;
break;
} else {
cout << "用户名或密码错误,请重新输入!" << endl;
}
}
return 0;
}
```
这个登陆系统使用了两个字符串变量来存储注册时输入的用户名和密码,然后在登录时循环询问用户输入用户名和密码,并与注册时输入的信息进行比对。如果用户名和密码匹配,就认为登陆成功,否则提示用户重新输入。
阅读全文