-
Notifications
You must be signed in to change notification settings - Fork 0
/
AgregarClientes.cpp
74 lines (57 loc) · 1.52 KB
/
AgregarClientes.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
70
71
72
73
74
#include <iostream>
#include <stdio.h>
#include <windows.h>
#include <stdlib.h>
#include <string.h>
#include <fstream>
#include "Clientes.h"
using namespace std;
void agregarCliente()
{
Cliente cliente1;
ofstream datos;
datos.open("clientes.txt",ios::app); //Abre el archivo en modo de edición
cout<<"Nuevo Registro de cliente"<<endl;
cout<<"Cedula: ";
gets(cliente1.Cedula);
fflush(stdin);
cout<<"Nombre: ";
gets(cliente1.Nombre);
fflush(stdin);
cout<<"Telefono: ";
gets(cliente1.Telefono);
fflush(stdin);
cout<<"Direccion: ";
gets(cliente1.Direccion);
fflush(stdin);
cout<<"Correo: ";
gets(cliente1.Correo);
fflush(stdin);
fflush(stdout);
datos<<cliente1.Cedula<<endl;
datos<<cliente1.Nombre<<endl;
datos<<cliente1.Telefono<<endl;
datos<<cliente1.Direccion<<endl;
datos<<cliente1.Correo<<endl;
datos.close();
}
void listarCliente()
{
// 1 - Abrir el archivo
// 2 - Leer el archivo
// 3 - Mostrar el contenido del archivo
ifstream lectura;
string texto; //aqui es donde guardaré todo el contenido del archivo
lectura.open("clientes.txt", ios::in); //Abrimos el archivo en modo Lectura
if(lectura.fail()) // Si falla la apertura del archivo
{
cout<<"No se pudo abrir el archivo"<<endl;
exit(1);
}
while(!lectura.eof()) //eof -> End of File ... Mientras no sea el final del archivo
{
getline(lectura, texto);
cout<<texto<<endl;
}
lectura.close();
}