标签:names mes mat turn stream code precision 提示 msu
输入球的中心点和球上某一点的坐标,计算球的半径和体积
0 0 0 1 1 1
1.732 21.766
为避免精度问题,PI值请使用arccos(-1)。
#include<iostream> #include<math.h> #include<iomanip> using namespace std; int main(){ double x1,x2,y1,y2,z1,z2; while(cin>>x1>>y1>>z1>>x2>>y2>>z2){ double r=(x1-x2)*(x1-x2)+(y1-y2)*(y1-y2)+(z1-z2)*(z1-z2); r=sqrt(r); double v=4/3*acos(-1)*r*r*r; cout<<fixed<<setprecision(3)<<r<<" "<<v<<endl; } return 0; }
标签:names mes mat turn stream code precision 提示 msu
原文地址:https://www.cnblogs.com/bernieloveslife/p/9736441.html