1.用C#计算出球、源码球圆柱和圆锥的源码球后来源码泄露表面积和体积的源代码:
用C#计算出球、圆柱和圆锥的源码球jetcache源码展示表面积和体积的源代码:
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);
}
}
静态方法,直接调用就好。源码球蓝领招工源码
源码球zabbixproxy源码安装2024-12-22 11:43
2024-12-22 11:34
2024-12-22 11:13
2024-12-22 11:04
2024-12-22 09:37
2024-12-22 09:05