数据类型的转换
题目是求任意时间钟表上分针和时针之间的夹角 我的程序如下 #include<stdio.h>
#include<math.h>
int main()
{
float hour,min,temp,a,b,c;
printf("please write the time in tewelf mode like 11 11 11\n");
scanf("%f %f %f",a,b,c);
if(a<0||b<0||c<0||a>11||b>59||c>59)
printf("error!\n");
else
min=60*b+c/10;
hour=30*a+min/12;
temp=fabs(min-hour);
if(temp>180)
printf("the angle is %f.\n.",temp-180);
else
printf("the angle is %f.\n",temp);
return 0;
}
但是老提示出错