-
Lenguaje
C
-
Descripción
Dos vehículos viajan a diferentes velocidades (v1 y v2) y están distanciados por una distancia d. El que está detrás viaja a una velocidad mayor. Se pide ingresar la distancia entre los dos vehículos (km) y sus respectivas velocidades (km/h) y con esto determinar y mostrar en que tiempo (minutos) alcanzará el vehículo más rápido al otro.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
float d, tiempo, v1, v2;
printf ("Ingresa el valor de d: ");
scanf ("%f", &d);
(void) getchar ();
printf ("Ingresa el valor de v1: ");
scanf ("%f", &v1);
(void) getchar ();
printf ("Ingresa el valor de v2: ");
scanf ("%f", &v2);
(void) getchar ();
if(v1>v2)
tiempo=d*60/(v1-v2);
else
tiempo=d*60/(v2-v1);
printf ("Valor de tiempo: %g\n", tiempo);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float d, tiempo, v1, v2;
printf ("Ingresa el valor de d: ");
scanf ("%f", &d);
(void) getchar ();
printf ("Ingresa el valor de v1: ");
scanf ("%f", &v1);
(void) getchar ();
printf ("Ingresa el valor de v2: ");
scanf ("%f", &v2);
(void) getchar ();
if(v1>v2)
tiempo=d*60/(v1-v2);
else
tiempo=d*60/(v2-v1);
printf ("Valor de tiempo: %g\n", tiempo);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}