Skip to content

Instantly share code, notes, and snippets.

@joffilyfe
Created December 9, 2014 23:22
Show Gist options
  • Save joffilyfe/f71ec837092bebcac9b1 to your computer and use it in GitHub Desktop.
Save joffilyfe/f71ec837092bebcac9b1 to your computer and use it in GitHub Desktop.
URI Exercice
#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