作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我试图解决这个问题,但系统一直给我“错误答案”。我检查了其他人的解决方案,我确定我的算法是正确的。任何人都可以帮我吗?多谢。问题: UVA 579 ClockHands
#include <iostream>
#include <cstdio>
#include <cmath>
using namespace std;
int main()
{
int hour, minute;
float hour_degree, minute_degree;
float total;
while(scanf("%d:%d",&hour, &minute) == 2)
{
if( hour == 0 && minute == 0)
break;
minute_degree = minute * 6;
hour_degree = hour * 30 + float(minute / 2);
total = fabs(hour_degree - minute_degree);
if(total > 180)
total = fabs(360 - total);
printf("%.3f\n", total);
}
return 0;
}
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我是一名优秀的程序员,十分优秀!