C++球体相关数学计算

关于球的体积,表面积,质量的计算

#include<iostream>
#define PI 3.141592      
#define P 7.8           //球的密度
using namespace  std;

int main(){
    double r,v,s,m;
    cout<<"请输入球的半径:"<<endl;
    cin>>r;
    v=PI*r*r*r*4/3;
    cout<<"球的体积是:"<<v<<endl;
    s=PI*r*r*4;
    cout<<"球的表面积是:"<<s<<endl;
    m=P*v;
    cout<<"球的质量是:"<<m<<endl;

    return 0;
}

一个非常简单的程序,记录一下自己学C++的过程。

上一篇:C++基础教程(六)——指针(1)


下一篇:No resource found that matches the given name: attr