标签:ott code 面积 describe 整数 namespace std ++ include
题目描述
一行三个整数a, b, c表示面积(1 <= a, b, c <= 10000)。
一行一个整数表示边长和。
1 1 1
12
4 6 6
28
解题思路:假设矩形三边为x,y,z,则有xy=a;xz=b;yz=c;三个式子联立得x=sqrt(a*b/c);y=sqrt(a*c/b);z=sqrt(b*c/a);所以矩形周长为4*(x+y+z)。
AC代码:
1 #include<bits/stdc++.h> 2 using namespace std; 3 int main(){ 4 int a,b,c; 5 cin>>a>>b>>c; 6 cout<<(4*(sqrt(1.0*a*c/b)+sqrt(1.0*a*b/c)+sqrt(1.0*b*c/a)))<<endl; 7 return 0; 8 }
标签:ott code 面积 describe 整数 namespace std ++ include
原文地址:https://www.cnblogs.com/acgoto/p/8992832.html