ayuda con este algoritmo, no se como realizar la parte de deposito y retiro
Publicado por jason (1 intervención) el 28/04/2018 06:46:17
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
#include <iostream>
#include <cstdlib>
using namespace std;
void deposito(void);
void retiro(void);
void consulta(void);
void salir(void);
int banco[5][2]= { {1001,950},
{1002,150},
{1003,250},
{1004,000},
{1005,140}
};
int opcion,fin, i, x, y;
int cuenta, saldo;
int main()
{
do
{
int opc=0;
fin=0;
system("cls");
system("color a");
printf("\n\t\t Cuenta de ahorro ");
printf("\n\t\t\t 1. Deposito ");
printf("\n\t\t\t 2. Retiro ");
printf("\n\t\t\t 3. Consulta ");
printf("\n\t\t\t 4. Salida ");
printf("\n\n\t\t Entre su Opcion: ");
scanf("%d",&opcion);
switch(opcion)
{
case 1:
deposito();
break;
case 2:
retiro();
break;
case 3:
consulta();
break;
case 4:
salir();
break;
default:
cout<<endl<<" opcion invalida . . . "<<endl;
system("pause");
break;
}
} while(fin<=0);
cout<<endl<<endl<<endl<<" Hemos concluido el Proceso . . ."<<endl;
system("pause");
}
void consulta() {
system("cls");
system("color 3a");
printf("\n\n\t MODULO DE CONSULTA \n\t");
printf("\n\n\t\t Entre su Cuenta: ");
scanf("%d",&cuenta);
x = 0;
for(i=0; i<=4; i++) {
if(cuenta == banco[i][0])
{
x = 1; y = i;
}
}
if(x==1) {
printf ("\n\n\t\tNumero de Cuenta: %d Saldo Actual es: %d ", banco[y][0], banco[y][1]);
}
else {
printf("\n\n\t La cuenta No. %d No existe ", cuenta);
}
printf("\n\n\n\n\n\t");
system("pause");
}
void deposito() {
printf("\n\n\t\t Entre su Cuenta: ");
scanf("%d",&cuenta);
cout<<endl<<endl;
system("pause");
}
void retiro() {
printf("\n\n\t\t Entre su Cuenta: ");
scanf("%d",&cuenta);
cout<<endl<<endl;
system("pause");
}
void salir() {
printf("\n\n\t\t SALIDA DEL PROCESO . . . . . ");
fin = 1;
cout<<endl<<endl;
system("pause");
}
Valora esta pregunta
0