devc++登录界面
时间: 2023-10-27 22:08:24 浏览: 94
基于vc++的登录界面
以下是一个简单的 devc++ 登录界面的代码示例:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string username, password;
cout << "请输入用户名:";
cin >> username;
cout << "请输入密码:";
cin >> password;
if (username == "admin" && password == "123456") {
cout << "登录成功!" << endl;
} else {
cout << "用户名或密码错误!" << endl;
}
return 0;
}
```
阅读全文