标签:archimedes
//Archimedes #include<iostream> #include<cmath> using namespace std; int main() { const double y = 62.4; const double pi = 3.1415926; double weigth,radius,volume,fb; cout<<"输入球的重量和半径:\n"; cin>>weigth>>radius; volume = (4.0/3)*pi*pow(radius,3); fb = y * volume; if(weigth > fb) cout<<"The ball will sink!\n"; else cout<<"The ball will float!\n"; return 0; }
Archimedes
标签:archimedes
原文地址:http://9320314.blog.51cto.com/9310314/1544922