当前位置:首页 > 教育综合 > 正文

这个sphere在求什么

Java 类Sphere求 3D球体积,用Testpheres测试?

public class TestSphere {

public static void main(String[] args) {

//0

System.out.println("count="+Sphere.getCount());

//1

Sphere s1=new Sphere(0,5,6,7);

System.out.println("count="+Sphere.getCount());

//2

Sphere s2=new Sphere(10,3,7,5);

System.out.println("count="+Sphere.getCount());

//volume

System.out.println("volume="+s1.volume());

System.out.println("volume="+s2.volume());

}

}

class Sphere{

static final double PI=3.14;

static int count;

private double xCenter,yCenter,zCenter,radius;

Sphere(double theRadius,double x,double y,double z){

this.xCenter=x;

this.yCenter=y;

this.zCenter=z;

if(theRadius<=0) {

this.radius=getRadius();

}else {

this.radius=theRadius;

}

count++;

}

public static int getCount() {

return count;

}

public double volume() {

return getNum((4.0/3.0)*(Math.pow(radius, 3))*PI);

}

private double getRadius() {

this.radius=getNum(Math.sqrt(getDou(xCenter)+getDou(yCenter)+getDou(zCenter)));

return this.radius;

}

private double getDou(double num) {

return Math.pow(num, 2);

}

private double getNum(double num) {

return new java.math.BigDecimal(num).setScale(3, 4).doubleValue();

}

}

c++新手编程题,在线等,求解,谢谢大神!

表面积、体积,分两个函数,分别返回




或者这样 ~


求翻译一个英文的单子。帮我翻译一下我眼睛验光的单子,是一个外国医生开的单子!谢谢

首先声明我不是专业人士。查阅了几篇国外网站上关于怎样看眼睛的验光单。现给出解释 Primary: 初步的意思 RX: 拉丁语Radix的缩写,意思是‘医生开的处方’ Primary RX:合起来就是‘初步处方’的意思 Sphere:原意是球镜,这里是眼镜‘光度’的意思,OD和OS均为Sphere项下的信息。 OD:是拉丁文oculus dexter的缩写,意思为‘右眼’ OS:是拉丁文oculus sinister的缩写,意思为‘左眼’ -号代表‘近视’(myopia) +号代表‘远视’(hyperopia) 结果乘以100就是度数(OD+1.00:右眼100度远视,OS +1.25:左眼12

C++多态的综合应用的问题,求立方体等,刚学C++不懂,求教各位

#include #include using namespace std; const double PI=3.1415926; class Solid { public: virtual double volume()=0; }; class Cube : public Solid { double len,width,height; public: Cube(double l=1.0, double w=1.0, double h=1.0):len(l),width(w),height(h){ } double volume(){ return

ball和sphere这两个单词有什么区别?

可以这么理解。但是,这个“专业术语” sphere 是对形体的描述,如 a star, the earth, the sun 等等,却不会用来取代这些物体。a ball 通常就是一个物体,而不仅仅是一个形状概念。
展开全文阅读

上一篇
五下7,8单元

下一篇
返回列表