Generation

generate functionTue, 28 Mar 2023

codigo que nos permitan poner cotraseñas

#include <iostream> #include <string> using namespace std; int main() { string password = "michael"; string input = ""; while (input != password) { cout << "Please enter the password: "; cin >> input; } cout << "Thank you!"; return 0; }

Questions about programming?Chat with your personal AI assistant