gpt4 book ai didi

c++ UVA 579 - ClockHands 错误答案

转载 作者:行者123 更新时间:2023-11-30 04:14:57 25 4
gpt4 key购买 nike

<分区>

我试图解决这个问题,但系统一直给我“错误答案”。我检查了其他人的解决方案,我确定我的算法是正确的。任何人都可以帮我吗?多谢。问题: 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;
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com