| Clock Math
Limits 1s, 512 MB
Given a time (hours as and minutes as ), determine the smaller angle between the two hands of a clock showing the time and print it.
Input
The input will contain two integers: () and ().
Output
Print the angle in degrees (positive and accurate to ).
Sample
Input | Output |
---|---|
10 15 |
142.5000000 |
N.B.: It's better if you solve this by your own. Thank you!
Toph Online Judge Clock Math Solve in C :
#include<stdio.h>
int main(){ double hour,min,angle; scanf("%lf%lf",&hour,&min); angle=0.5*(60*hour-11*min); if(angle>180) angle=360-angle; printf("%.7lf\n",angle);}
0 Comments