-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenumod.cpp
91 lines (68 loc) · 1.93 KB
/
menumod.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#include<stdio.h>
#include<conio.h>
#include <stdlib.h>
struct datos{
int clave[20];
int num[30];
}emp;
int main()
{
int i,opc,x;
struct datos emp;
FILE *F;
do
{
printf("\n *************************///**************************");
printf("\n");
printf("\n 1- Altas:");
printf("\n 2- Bajas:");
printf("\n 3- Consultas:");
printf("\n *************************///**************************");
printf("\n Ingresa la opcion Deseada:""\n");
scanf("%d",&opc);
switch(opc)
{
case 1:
F=fopen("datos.dat","ab");
if(F==NULL)
{
printf("ERROR, EL ARCHIVO NO EXISTE:");
}
else
{
printf("dame un numero:");
scanf("%d",&emp.num);
puts("ingresa una clave:");
scanf("%f",&emp.clave);
fwrite(&emp,sizeof(emp),1,F);
fclose(F);
}
break;
case 2:
// F=fopen("datos.dat","rb");
//F=fopen("datos.dat","wb");
//printf("que clave deseas eliminar""\n");
// do{
// fread(&emp,sizeof(emp),1,F)
// if(emp.clave) {
// fwrite(&emp,sizeof(emp),1,F);
//}
// }
// while(!feof(F));
// break;
//fclose(F);
case 3:
F=fopen("datos.dat","rb");
printf("datos ingresados:""\n");
while(fread(&emp,sizeof(emp),1,F=0))
{
printf("%d",emp.num);
printf("%d",emp.clave);
fclose(F);
}
break;
}}while(opc!=4);
getchar();
return 0;
}
© 2014 Microsoft Términos Privacidad y cookies Desarrolladores Español