1.用C#计算出球、体积体积圆柱和圆锥的源码网页添加微信源码表面积和体积的源代码:
用C#计算出球、圆柱和圆锥的代码春哥源码转让表面积和体积的源代码:
class Geometry
{
public static int VSphere(int r)//球体积
{
return Math.PI*r*r;
}
public static int VCylinda(int r,int h)\\圆柱体积
{
return Math.PI*r*r*h;
}
public static int VCone(int r,int h)\\圆锥体积
{
return Math.PI*r*r*h/3;
}
public static int SSphere(int r)\\球表面积
{
return 4*Math.PI*r*r;
}
public static int SCylinda(int r,int h)\\圆柱表面积
{
return Math.PI*(r^2*2+2*r*h);
}
public static int SCone1(int r,int h)\\圆锥表面积(须知底面半径和高)
{
return Math.PI*(r^2+r*Math.Sqrt(r^2+h^2));
}
public static int SCone2(int r,int l)\\圆锥表面积(须知底面半径和母线长)
{
return Math.PI*(r^2+r*l);
}
}
静态方法,直接调用就好。体积体积一般源码
源码手机打赏源码2025-01-11 17:09
2025-01-11 17:04
2025-01-11 16:20
2025-01-11 16:10
2025-01-11 15:42
2025-01-11 15:38