zoukankan      html  css  js  c++  java
  • Crossed Ladders

    Description

    A narrow street is lined with tall buildings. An x foot long ladder is rested at the base of the building on the right side of the street and leans on the building on the left side. A y foot long ladder is rested at the base of the building on the left side of the street and leans on the building on the right side. The point where the two ladders cross is exactly c feet from the ground. How wide is the street?

    Input

    Input starts with an integer T (≤ 10), denoting the number of test cases.

    Each test case contains three positive floating point numbers giving the values of xy, and c.

    Output

    For each case, output the case number and the width of the street in feet. Errors less than 10-6 will be ignored.

    Sample Input

    4

    30 40 10

    12.619429 8.163332 3

    10 10 3

    10 10 1

    Sample Output

    Case 1: 26.0328775442

    Case 2: 6.99999923

    Case 3: 8

    Case 4: 9.797958971  

    求两个房子之间的距离   

    #include<cstdio>   
    #include<cmath>
    #define  eps 1e-8 
    int main()
    {
      int t;
      int cut=0;
      scanf("%d",&t);
      while(t--)
      {
      	cut++;
      	double x,y,h;
      	 scanf("%lf%lf%lf",&x,&y,&h);
      	  int S=100;
      	  double l=0.0,r=1000.0; 
    			double ans;
      	  while(S--)
      	  {
      	  	double mid=(l+r)/2.0;
      	  	double jiao1=acos(mid/y);
      	  	double jiao2=acos(mid/x);
      	  	double L=h/tan(jiao1)+h/tan(jiao2);
      	 
      	  	if(mid>L)
    			{
    				l=mid+eps;
    				ans=mid;
    			}
    			else
    			{
    				r=mid-eps;
    			}
    		}
      	   printf("Case %d: %.7lf
    ",cut,ans);
    	  }	
    	return 0;
    }


  • 相关阅读:
    《朗读手册》【美】吉姆·崔利斯
    《web全栈工程师的自我修养》 读书笔记
    2016/06 书单
    PostgreSQL数据库的安装
    MySQL数据库的安装
    异构数据库迁移——DATAX
    初探12C碰到的那些“坑”
    关于Ubuntu 16.04 pip安装Docker-Compose
    启动与关闭容器
    容器标识符
  • 原文地址:https://www.cnblogs.com/kingjordan/p/12027125.html
Copyright © 2011-2022 走看看