回复 2楼 hahayezhe
#include<stdio.h>
int main()
{
int a,b,c,d,s;
scanf("%a%b%c%d",&a,&b,&c,&d);
s=sqrt((c-a)*(c-a)+(d-b)*(d-b));
printf("%d\n",s);
return 0;
}
提示错误:
D:\Program Files\vc6.0\MyProjects\1\1.cpp(6) : error C2065: 'sqrt' : undeclared identifier
执行 cl.exe 时出错.