Created
December 9, 2014 23:22
-
-
Save joffilyfe/f71ec837092bebcac9b1 to your computer and use it in GitHub Desktop.
URI Exercice
This file contains hidden or 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
#include <stdio.h> | |
int main(void) { | |
double D, RESULTADO, CALCULO, V; | |
scanf("%lf", &D); | |
V = 8.33333333; | |
D = D * 1000; | |
CALCULO = (D/V) / 60; | |
printf("%0.0lf minutos\n", CALCULO); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment