Created
January 15, 2015 10:50
-
-
Save rajurayhan/5f7c564be590c0d8cc05 to your computer and use it in GitHub Desktop.
URI Online Judge | 1017
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() | |
{ | |
float hr,sp,m,d; | |
m=12; | |
scanf("%f %f",&hr,&sp); | |
d=(hr*sp)/m; | |
printf("%.3f\n",d); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the solution :)