求问大佬错在哪里,只有最后一个测试点错了
#include<stdio.h>
#include<math.h>
float s,v;
int h,m,t;
int main(void){
scanf("%d %d",&s,&v);
t=ceil(s/v)+10;
h=(7-t/60+24)%24;
m=(60-t%60)%60;
if(h<10)
printf("0%d",h);
else
printf("%d",h);
if(m<10)
printf(":0%d",m);
else
printf(":%d",m);
return 0;
}