Skip to content

Instantly share code, notes, and snippets.

@rajurayhan
Created January 15, 2015 10:50
Show Gist options
  • Save rajurayhan/5f7c564be590c0d8cc05 to your computer and use it in GitHub Desktop.
Save rajurayhan/5f7c564be590c0d8cc05 to your computer and use it in GitHub Desktop.
URI Online Judge | 1017
#include<stdio.h>
int main()
{
float hr,sp,m,d;
m=12;
scanf("%f %f",&hr,&sp);
d=(hr*sp)/m;
printf("%.3f\n",d);
return 0;
}
@shohan4556
Copy link

Thanks for the solution :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment