fuliangliang的Blog

合抱之木,生于毫末;九层之台,起于累土;千里之行,始于足下。

用户操作
[即时聊天] [发私信] [加为好友]
fuliangID:fuliangliang
65517次访问,排名1597好友1人,关注者3
fuliangliang的文章
原创 100 篇
翻译 0 篇
转载 25 篇
评论 29 篇
fuliang的公告

我的联系方式:20542606

Email:fuliangliang@gmail.com


最近评论
topgunqq:条理清楚,简单易学.比网上其他例子要好一些.至少按照楼主写的过程,我这个初学者实验成功了!
marshluca:恭喜~~
请问有没rails 做的项目,比方blog?
marshluca@gmail.com
marshluca:恭喜~~
请问有没rails 做的项目,比方blog?
marshluca@gmail.com
chucai:写的非常的好,仔细的拜读了。思路很清晰。考虑的问题也比较全面。
tbsc3:我也遇到了这个问题,如果配1 M就有用,大于2M就还是默认的 不知道你有没有解决呀,教教我
文章分类
收藏
    相册
    净月潭一日游
    页面图片
    日历
    文章收藏
    我的JavaEye博客
    存档
    软件项目交易
    订阅我的博客
    XML聚合  FeedSky
    订阅到鲜果
    订阅到Google
    订阅到抓虾
    订阅到BlogLines
    订阅到Yahoo
    订阅到GouGou
    订阅到飞鸽
    订阅到Rojo
    订阅到newsgator
    订阅到netvibes

    原创 JOJ ACM 1184收藏

    新一篇: JOJ ACM 1061 | 旧一篇: JOJ ACM 1149

    To calculate the circumference of a circle seems to be an easy task - provided you know its diameter. But what if you don't?

    You are given the cartesian coordinates of three non-collinear points in the plane.
    Your job is to calculate the circumference of the unique circle that intersects all three points.

    Input Specification

    The input file will contain one or more test cases. Each test case consists of one line containing six real numbers x1,y1, x2,y2,x3,y3, representing the coordinates of the three points. The diameter of the circle determined by the three points will never exceed a million. Input is terminated by end of file.

    Output Specification

    For each test case, print one line containing one real number telling the circumference of the circle determined by the three points. The circumference is to be printed accurately rounded to two decimals. The value of pi is approximately 3.141592653589793.

    Sample Input

    0.0 -0.5 0.5 0.0 0.0 0.5
    0.0 0.0 0.0 1.0 1.0 1.0
    5.0 5.0 5.0 7.0 4.0 6.0
    0.0 0.0 -1.0 7.0 7.0 7.0
    50.0 50.0 50.0 70.0 40.0 60.0
    0.0 0.0 10.0 0.0 20.0 1.0
    0.0 -500000.0 500000.0 0.0 0.0 500000.0
    

    Sample Output

    3.14
    4.44
    6.28
    31.42
    62.83
    632.24
    3141592.65
    
    code:
    #include<stdio.h>
    #include<math.h>
    
    struct Point
    {
    	double x;
    	double y;
    }a[3];
    
    double SinA()
    {
      double dist,high;
      double A,B,C;
      A = a[0].y-a[1].y;
      B = a[1].x-a[0].x;
      C = a[0].x*a[1].y-a[1].x*a[0].y;
      high = fabs(A*a[2].x+B*a[2].y+C)/sqrt(A*A+B*B);
      dist = sqrt(pow((a[0].x - a[2].x),2)+pow(a[0].y-a[2].y,2));
      return high/dist;
    }
    int main()
    {
             double c,ab;
    	while(scanf("%lf%lf%lf%lf%lf%lf",&a[0].x,&a[0].y,&a[1].x,&a[1].y,&a[2].x,&a[2].y)!=EOF)
    	{
    	  ab = sqrt(pow((a[1].x - a[2].x),2)+pow(a[1].y-a[2].y,2));
               c = ab * 3.141592653589793 / SinA();
    	  printf("%.2lf\n",c);
    	}
    	return 0;
    }
    

    发表于 @ 2006年01月17日 19:26:00|评论(loading...)|编辑

    新一篇: JOJ ACM 1061 | 旧一篇: JOJ ACM 1149

    评论:没有评论。

    发表评论  


    当前用户设置只有注册用户才能发表评论。如果你没有登录,请点击登录
    Csdn Blog version 3.1a
    Copyright © fuliang