-
Notifications
You must be signed in to change notification settings - Fork 1
/
programa para tp algoritmos_v0.9.c
265 lines (201 loc) · 5.37 KB
/
programa para tp algoritmos_v0.9.c
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <string.h>
#include<time.h>
#include <locale.h>
void stock (&cantidad_stock, int i){
int cod_de_producto, cantidad_vendida, cantidad_comprada, opcion;
do{
printf("Ingrese la opcion deseada:\n");
printf("--------------------------------------\n");
printf("1-Venta\n");
printf("2-Compra\n");
printf("3-Imprimir\n");
printf("0-Salir\n");
printf("Opcion: ");
scanf("%i",&opcion);
}while((opcion<0)||(opcion>3));
system("cls");
switch(opcion){
case 0:
printf("HASTA LUEGO");
case 1:
printf("VENTAS\n");
printf("--------------------------------------\n");
printf("ingrese codigo de producto: ");
scanf("%i",&cod_de_producto);
printf("ingrese cantidad vendida: ");
scanf("%i",&cantidad_vendida);
cantidad_stock=-cantidad_vendida;
break;
case 2:
printf("COMPRAS\n");
printf("--------------------------------------\n");
printf("ingrese codigo de producto: ");
scanf("%i",&cod_de_producto);
printf("ingrese cantidad comprada: ");
scanf("%i",&cantidad_comprada);
cantidad_stock=+cantidad_comprada;
break;
case 3:
printf("IMPRIMIR\n");
printf("--------------------------------------\n");
printf("Codigo del producto\t Cantidad \n");
printf("%i\t\t%i",cod_de_producto,cantidad_stock);
break;
}
}
void provedores(){
int opcion_prov;
long int cuit;
long int telefono;
char categoria [50];
char correo_electronico[50];
char razon_social[20];
printf("1- ingresar nuevo provedor\n 2 salida");
scanf("%i", &opcion_prov);
switch(opcion_prov ){
case 1:
printf("ingrese razon social\n");
fflush(stdin);
scanf("%s", &razon_social);
printf("ingrese cuit");
fflush(stdin);
scanf("%li" , &cuit);
printf("ingrese correo electronico");
fflush(stdin);
scanf("%s" , &correo_electronico);
printf("ingrese telefeono");
scanf("%li" , &telefono);
printf("ingrese categoria");
scanf("%s" , &categoria);
break;
case 2:
printf("");
break;
default:
printf("opcion incorrecta");
}
}
void compras (){
int opcion;
char cat_prod [20];
char fecha_prod [20];
long int cant_prod;
double precio_unidad;
int opcion_2;
printf("BIENVENIDO\n\n");
printf("COMPRAS\n\n\n");
printf("1-INGRESAR MERCADERIA\n2- SALIR\n");
scanf("%d", &opcion);
if (opcion==1){
do {
system("cls");
printf("Ingrese Categoria de Producto\n");
fflush(stdin);
scanf("%d", &cat_prod);
printf("Ingrese cantidad de productos\n");
fflush(stdin);
scanf("%d", &cant_prod);
printf("Ingrese precio de Producto /x unidad\n");
fflush(stdin);
scanf("%d", &precio_unidad);
printf("Ingrese fecha de vencimiento de Producto\n");
fflush(stdin);
scanf("%d", &fecha_prod);
printf("Desea realizar la carga de otro pruducto si=1, no=2\n");
fflush(stdin);
scanf("%d", &opcion_2);
} while (opcion_2==1);
}
else if (opcion==2){
}
else{
printf("INGRESE UNA OPCION VALIDA");
}
}
void encabezado(){
printf("\n====================================================\n\n");
printf("EL KIOSKITO DE LA UNO\n\n");
printf("CUIT 30-23456789-5\n\n");
printf("TELEFONO: 0220 4965878\n\n");
printf("EMAIL: [email protected]\n\n");
printf("DIRECCION: renan 1190\n\n");
struct tm *outtime;
time_t hora;
time(&hora);
outtime=localtime(&hora);
printf("%.19s \n", asctime(outtime));
printf("====================================================");
}
main (){
const char usuario [15]="admin";
const char clave [15]="1234";
char usuario_u[15];
char clave_u [15];
int intentos=0;
int correcta=0;
int n_opcion;
setlocale (LC_ALL, "spanish");
do{
system("cls");
printf("\t\t \n INICIO DE SESION\n\n\n");
printf("usuario: ");
fflush(stdin);
scanf("%s", &usuario_u);
printf("clave: ");
fflush(stdin);
scanf("%s", &clave_u);
if (strcmp(usuario, usuario_u)==0 && strcmp (clave, clave_u)==0){
correcta=1;
}
else {
intentos++;
}
}
while (intentos<3 && correcta==0);
if (correcta=1 && intentos<3){
system ("cls");
encabezado();
system("color 6");
printf("\n\n\t\t BIENVENIDO AL SISTEMA\n ");
printf("\n\t\t MENU ");
printf("\n1-VENTAS\n2-COMPRAS\n3-STOCK\n4-PROVEEDORES\n\n0-SALIR");
}
else {
system("cls");
printf("Ha superado cantidad maxima de intentos\n");
system("pause");
exit(0);
}
printf("\n\n Ingrese el numero que corresponda a la opcion deseada:\n ");
scanf("%i", & n_opcion);
switch(n_opcion){
case 0:
printf("SALIR");
break;
case 1:
system("cls");
system("color 4");
encabezado();
printf("VENTAS");
break;
case 2:
printf("COMPRAS");
compras();
break;
case 3:
printf("STOCK");
stock();
break;
case 4:
printf("PROVEEDORES");
provedores();
break;
default:
printf("INGRESE OPCION VALIDA");
}
getch();
return 0;
}