-
Notifications
You must be signed in to change notification settings - Fork 1
/
alquiler de autos.c
196 lines (196 loc) · 4.92 KB
/
alquiler de autos.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
#include<stdio.h>
#include<conio.h>
#include<string.h>
#include<locale.h>
#define tope 30
int fechavalida(int,int,int);
int cantdiasmes(int,int);
int bisiesto(int);
int cargarvectores(char[][6],int[],float[]);
void alquilerenpesos(float[],float[],float,int);
void totalalq(float[],int[],int);
void ponerenfecha(int[],int[],int[],int,int,int,int);
void fechadevolucion(int[],int[],int[],int[],int);
void listar(char[][6],int[],float[],int[],int[],int[],int);
float sumar(float[],int);
void main()
{
setlocale(LC_CTYPE,"Spanish");
int band1,band2,d,m,a,ce,dias[tope],dia[tope],mes[tope],ano[tope];
float dolar,totpes,totdol,percent,precio[tope],alq[tope];
char patentes[tope][6];
printf("\n EMPRESA DE ALQUILER DE AUTOMÓVILES \n");
printf("\n Ingrese la fecha correspondiente al dia de alquiler: \n");
band1=0;
do
{
if(band1!=0)
printf(" \n La fecha ingresada no existe. Ingrese una fecha correcta:\n");
printf("\n Ingrese el día (en números) de la fecha:\n\t");
scanf("%d",&d);
printf("\n Ingrese el mes (en números) de la fecha:\n\t");
scanf("%d",&m);
printf("\n Ingrese el año (en números) de la fecha:\n\t");
scanf("%d,&a");
band1=1;
}
while(!fechavalida(d,m,a));
printf("\n Ingrese la cotización del dólar en el día %d/%d/%d:\n\t",d,m,a);
band2=0;
do
{
if(band2!=0)
printf("\n La cotización no es válida. Ingrese una cotización correcta:\n\t");
scanf("%f",&dolar);
band2=1;
}
while(dolar<=0);
printf("\n Ingrese los datos de los alquileres. Se piden patentes alfanuméricas de 6 caracteres,");
printf("\n la cantidad de días de alquiler y el precio diario del alquiler en dólares");
printf("\n Se pueden ingresar hasta %d alquileres ya que la flota es de %d vehículos.",tope,tope);
printf("\n Finalizar la carga de datos con la patente \"FINDIA\".\n");
ce=cargarvectores(patentes,dias,precio);
if(ce!=0)
{
percent=ce*100/tope;
printf("\n Porcentaje de vehículos alquilados:\t%f\n",percent);
printf("\n ALQUILERES DE AUTOS DEL DÍA %d/%d/%d \n",d,m,a);
printf("\n COTIZACIÓN DEL DÓLAR:$\t%f\n",dolar);
alquilerenpesos(precio,alq,dolar,ce);
totalalq(alq,dias,ce);
ponerenfecha(dia,mes,ano,d,m,a,ce);
fechadevolucion(dia,mes,ano,dias,ce);
printf("\n NRO.VEHÍCULO\t DÍAS DE ALQUILER\t PRECIO DEL ALQUILER\t FECHA DE DEVOLUCIÓN\n");
printf("\t\t EN PESOS\t DEL VEHÍCULO\n");
listar(patentes,dias,alq,dia,mes,ano,ce);
totpes=sumar(alq,ce);
totdol=totpes/dolar;
printf("\n TOTAL RECAUDADO EN ALQUILERES (EN PESOS):\t%f\n",totpes);
printf("\n TOTAL RECAUDADO EN ALQUILERES (EN DÓLARES):\t%f\n",totdol);
}
else
printf("\n No hubieron alquileres en el día \n");
getch();
}
int fechavalida(int d,int m,int a)
{
int f=0;
if(a>1600&&m>=1&&m<=12&&d>=1&&d<=cantdiasmes(m,a))
f=1;
return f;
}
int cantdiasmes(int m,int a)
{
int cd;
if(m==4||m==6||m==9||m==11)
cd=30;
else
if(m==2)
cd=28+bisiesto(a);
else
cd=31;
return cd;
}
int bisiesto(int a)
{
if(a%4==0&&a%100!=0||a%400==0)
return 1;
else
return 0;
}
int cargarvectores(char pat[][6],int d[],float pr[])
{
int i,di;
float pre;
char pate[6];
i=0;
do
{
printf("\n\t Alquiler número %d",i+1);
printf("\n Ingrese la patente:\n\t");
fflush(stdin);
gets(pate);
strcpy(pate,toupper(pate));
printf("\n Ingrese la cantidad de días de alquiler:\n\t");
scanf("%d",&di);
printf("\n Ingrese el precio diario del alquiler en dólares\n\t");
scanf("%f",&pre);
}
while(strlen(pate)!=6||di<=0||pre<=0);
while(strcmp(pat,"FINDIA")!=0)
{
strcpy(pat[i],pate);
d[i]=di;
pr[i]=pre;
i++;
do
{
printf("\n\t Alquiler número %d",i+1);
printf("\n Ingrese la patente:\n\t");
fflush(stdin);
gets(pate);
strcpy(pate,toupper(pate));
printf("\n Ingrese la cantidad de días de alquiler:\n\t");
scanf("%d",&di);
printf("\n Ingrese el precio diario del alquiler en dólares\n\t");
scanf("%f",&pre);
}
while(strlen(pate)!=6||di<=0||pre<=0);
}
return i;
}
void alquilerenpesos(float pr[],float alq[],float dol,int ce)
{
int i;
for(i=0;i<ce;i++)
alq[i]=pr[i]*dol;
}
void totalalq(float alq[],int dias[],int ce)
{
int i;
for(i=0;i<ce;i++)
alq[i]*=dias[i];
}
void ponerenfecha(int d[],int m[],int a[],int d1,int m1,int a1,int ce)
{
int i;
for(i=0;i<ce;i++)
{
d[i]=d1;
m[i]=m1;
a[i]=a1;
}
}
void fechadevolucion(int d[],int m[],int a[],int n[],int ce)
{
int i;
for(i=0;i<ce;i++)
{
d[i]+=n[i];
while(d[i]>cantdiasmes(m[i],a[i]))
{
d[i]-=cantdiasmes(m[i],a[i]);
m[i]++;
if(m[i]>12)
{
m[i]=1;
a[i]++;
}
}
}
}
void listar(char pat[][6],int n[],float alq[],int d[],int m[],int a[],int ce)
{
int i;
for(i=0;i<ce;i++)
printf("\n %s\t %d\t %f\t %d/%d/%d");
}
float sumar(float v[],int ce)
{
int i;
float acum;
acum=0;
for(i=0;i<ce;i++)
acum+=v[i];
return acum;
}