-
Lenguaje
C
-
Descripción
Construya un algoritmo que calcule el tiempo de encuentro de dos automóviles que van en sentido contrario, si se conoce la distancia y la velocidad de los dos móviles.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
float distancia, tiempo, velocidad_1, velocidad_2;
printf ("Ingresa el valor de distancia: ");
scanf ("%f", &distancia);
(void) getchar ();
printf ("Ingresa el valor de velocidad 1: ");
scanf ("%f", &velocidad_1);
(void) getchar ();
printf ("Ingresa el valor de velocidad 2: ");
scanf ("%f", &velocidad_2);
(void) getchar ();
tiempo=distancia/(velocidad_2/velocidad_1+1)/velocidad_1;
printf ("Valor de tiempo: %g\n", tiempo);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float distancia, tiempo, velocidad_1, velocidad_2;
printf ("Ingresa el valor de distancia: ");
scanf ("%f", &distancia);
(void) getchar ();
printf ("Ingresa el valor de velocidad 1: ");
scanf ("%f", &velocidad_1);
(void) getchar ();
printf ("Ingresa el valor de velocidad 2: ");
scanf ("%f", &velocidad_2);
(void) getchar ();
tiempo=distancia/(velocidad_2/velocidad_1+1)/velocidad_1;
printf ("Valor de tiempo: %g\n", tiempo);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}