码迷,mamicode.com
首页 > 编程语言 > 详细

C语言判断两个半径相等的圆的位置关系

时间:2020-05-09 01:28:44      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:code   png   print   半径   math   eof   main   sharp   info   

技术图片

完整代码:

#include<stdio.h>
#include<math.h>
int main()
{
	float x1,y1,x2,y2,r;
	
	while(scanf("%f %f %f %f %f",&x1,&y1,&x2,&y2,&r)!=EOF)
	{
		float d;
		d=sqrt(pow((x2-x1),2)+pow((y2-y1),2));
		if(d==0)
		{
			printf("重合\n");
		}
		else if(d>2*r)
		{
			printf("相离\n"); 
		}else if(d==2*r)
		{
			printf("相切\n");
		 }else{
		 
		 	double ang1=acos(d/(2*r));
		 	printf("相交 %.2lf\n",2*ang1*r*r-d*r*sin(ang1));
		 }
	}
}

  

C语言判断两个半径相等的圆的位置关系

标签:code   png   print   半径   math   eof   main   sharp   info   

原文地址:https://www.cnblogs.com/Zhuohome/p/12853925.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!