码迷,mamicode.com
首页 > 其他好文 > 详细

Archimedes

时间:2014-08-26 03:04:06      阅读:227      评论:0      收藏:0      [点我收藏+]

标签: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

标签:archimedes

原文地址:http://9320314.blog.51cto.com/9310314/1544922

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!