#include <bits/stdc++.h> using namespace std; int main() { double t1,t2,t3,n1,n2,n3;cin>>t1>>t2>>t3>>n1>>n2>>n3; double r = sqrt(pow(t1-n1,2)+pow(t2-n2,2)+pow(t3-n3,2)); cout<<fixed <<setprecision(3)<<r<<" "; cout<<fixed<<setprecision(3)<<4* acos(-1)*r*r*r/3<<endl; } // 64 位输出请用 printf("%lld")
cout<<setprecision(n)表示保留n位有效数字
cout<<fixed<<setprecision(n)表示保留n位小数