-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractica_14.cpp
69 lines (61 loc) · 1.47 KB
/
practica_14.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
struct User
{
string username;
string password;
};
// Función para crear un nuevo usuario
void createUser(User &user)
{
cout << "Ingrese un nombre de usuario: ";
getline(cin, user.username);
cout << "Ingrese una contraseña: ";
getline(cin, user.password);
}
// Función para guardar los datos del usuario en un archivo de texto
void saveUser(User user)
{
ofstream outputFile;
outputFile.open("usuarios.txt", ios::app);
outputFile << user.username << "," << user.password << endl;
outputFile.close();
}
// Función para leer los datos del usuario desde el archivo de texto
void readUsers()
{
ifstream inputFile;
inputFile.open("usuarios.txt");
if (inputFile.fail())
{
cout << "No se pudo abrir el archivo." << endl;
}
else
{
string line;
while (getline(inputFile, line))
{
cout << line << endl;
}
}
inputFile.close();
}
int main()
{
User newUser;
char option;
do
{
createUser(newUser);
saveUser(newUser);
cout << "Usuario creado exitosamente." << endl;
cout << "¿Desea crear otro usuario? (s/n): ";
cin >> option;
cin.ignore();
} while (option == 's' || option == 'S');
cout << "Usuarios registrados:" << endl;
readUsers();
return 0;
}