[求助]这错误提示又是啥意思?
#include <stdio.h>main()
{
float x,y;
int a,b,c,d;
printf("Input X&Y:");
scanf("%d%d",&x,&y);
a=x+2;b=x-2;c=y+2;d=y-2;
if (a*a+c*c>1||a*a+d*d>1||b*b+d*d>1||b*b+c*c>1) printf("Height is 0.\n");
else printf("Height is 10m.\n");
}
输入1 1 回车后
就会提示Floating point error:Domain.
这是啥意思?