-
Linguagem
C
-
Descrição
Converte a velocidade em metros por segundo à velocidade em quilômetros por hora.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
float velocidade_em_km_por_h, velocidade_em_m_por_s;
printf ("Digite o valor do velocidade em m por s: ");
scanf ("%f", &velocidade_em_m_por_s);
(void) getchar ();
velocidade_em_km_por_h=velocidade_em_m_por_s*5.0/18.0;
printf ("O valor do velocidade em km por h: %g\n", velocidade_em_km_por_h);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float velocidade_em_km_por_h, velocidade_em_m_por_s;
printf ("Digite o valor do velocidade em m por s: ");
scanf ("%f", &velocidade_em_m_por_s);
(void) getchar ();
velocidade_em_km_por_h=velocidade_em_m_por_s*5.0/18.0;
printf ("O valor do velocidade em km por h: %g\n", velocidade_em_km_por_h);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}