http://acm.hdu.edu.cn/showproblem.php?pid=2076
角有多大(题目已修改,注意读题)Time Limit: 1000/1000 MS (Java/Others)
Total Submission(s): 4732
Problem Description
时间过的好快,一个学期就这么的过去了,xhd在傻傻的看着表,出于对数据的渴望,突然他想知道这个表的时针和分针的夹角是多少。现在xhd知道的只有时间,请你帮他算出这个夹角。
注:夹角的范围[0,180],时针和分针的转动是连续而不是离散的。
注:夹角的范围[0,180],时针和分针的转动是连续而不是离散的。
Input
输入数据的第一行是一个数据T,表示有T组数据。
每组数据有三个整数h(0 <= h < 24),m(0 <= m < 60),s(0 <= s < 60)分别表示时、分、秒。
每组数据有三个整数h(0 <= h < 24),m(0 <= m < 60),s(0 <= s < 60)分别表示时、分、秒。
Output
对于每组输入数据,输出夹角的大小的整数部分。
Sample Input
2 8 3 17 5 13 30
Sample Output
138 75
Author
xhd
Source
Recommend
lcy
分析:说他是数学题也不为过。
代码如下:
#include<stdio.h>
#include<string.h>
#include<math.h>
int main()
{
int T;
double ans;
int h,m,s;
scanf("%d",&T);
while(T--)
{
scanf("%d%d%d",&h,&m,&s);
if(h>=12) h=h-12;
ans=fabs((h*30+0.5*m+0.00833*s)-(m*6+s*0.1));
if(ans>180) printf("%d\n",(int)(360-ans));
//必须先被360减,然后在强转,否则会出错
else printf("%d\n",(int)ans);
//用%.0lf会进位,同样会出错
}
return 0;
}
#include<string.h>
#include<math.h>
int main()
{
}