任意输入坐标平面上一点(x,y),求该点到原点(0,0)间的距离。
#include <stdio.h>#include <math.h>
#include <malloc.h>
______________________node
{ float x;
float y;
}node;
main()
{ node *p;
p=______________________________;
scanf(“%f,%f”,p->x,p->y);
printf(“%5.1f”,sqrt(p->x+p->y*p->y));
________________________________;
}
[ 本帖最后由 粉jj 于 2011-5-19 13:05 编辑 ]