Created
February 12, 2016 07:52
-
-
Save jmramirezpro/54b4f60332d74904cbfc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* EspacioRecorrido.c | |
* Ejercicios del Podcast Codigo Fuente - Programa 021 | |
* Escribe un programa que calcule la ecuación del espacio recorrido | |
* por un objeto que se mueve a velocidad constante. Había recorrido un espacio | |
* inicial de 5,5m y se mueve a velocidad constante de 3,2m/s. | |
* Debe pedir por entrada estándar los segundos que se mueve. | |
* Creado el 9 de feb. de 2016 | |
* Author: jmramirez | |
*/ | |
#include <stdio.h> | |
#define ESPACIOINICIAL 5.5F | |
#define VELOCIDAD 3.2F | |
int main(void) | |
{ | |
float tiempo = 22.3F; /* Tiempo recorrido */ | |
float espacio = 0; | |
printf("Tiempo de desplazamiento:"); | |
scanf("%f",&tiempo); | |
/* Operaciones requeridas */ | |
espacio = ESPACIOINICIAL + VELOCIDAD * tiempo; | |
/* Resultados de operaciones */ | |
printf("Espacio recorrido = %f metros\n", espacio); | |
return (0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment