Ad Code

Responsive Advertisement

Toph | Clock Math | Beginner

 |  Clock Math

Limits 1s, 512 MB

Given a time (hours as H and minutes as M), determine the smaller angle between the two hands of a clock showing the time and print it.

Clock Math

Input

The input will contain two integers: H (0 \le H < 12) and M (0 \le M < 60).

Output

Print the angle in degrees (positive and accurate to 10^{-4}).

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);
}

Post a Comment

0 Comments

Ad Code

Responsive Advertisement