题目
java Math.abs和Math.sqrt
class Line
{
double p1x;
double p2x;
double p1y;
double p2y;
public Line(double p1x,double p1y,double p2x,double p2y){
this.p1x=p1x;
this.p2x=p2x;
this.p1y=p1y;
this.p2y=p2y;
}
public String toString(){
return "(" + p1x + "," + p1y + ")-(" + p2x + "," + p2y + ")";
}
public double getLength(){
double a=Math.abs(p1x-p2x);
double b=Math.abs(p1y-p2y);
double c=Math.sqrt(a*a+b*b);
x09 return c;
}
x09public static void main(String[] args)
x09{
x09Line line1 = new Line(10.5,20.1,100.0,50.0);
x09Line line2 = new Line(-1.0,0.0,0.0,1.0);
x09System.out.println(line1);
x09System.out.println(line1.getLength());
x09System.out.println(line2);
x09System.out.println(line2.getLength());
x09}
}
不能运行 总是找不到符号
怎么回事啊
class Line
{
double p1x;
double p2x;
double p1y;
double p2y;
public Line(double p1x,double p1y,double p2x,double p2y){
this.p1x=p1x;
this.p2x=p2x;
this.p1y=p1y;
this.p2y=p2y;
}
public String toString(){
return "(" + p1x + "," + p1y + ")-(" + p2x + "," + p2y + ")";
}
public double getLength(){
double a=Math.abs(p1x-p2x);
double b=Math.abs(p1y-p2y);
double c=Math.sqrt(a*a+b*b);
x09 return c;
}
x09public static void main(String[] args)
x09{
x09Line line1 = new Line(10.5,20.1,100.0,50.0);
x09Line line2 = new Line(-1.0,0.0,0.0,1.0);
x09System.out.println(line1);
x09System.out.println(line1.getLength());
x09System.out.println(line2);
x09System.out.println(line2.getLength());
x09}
}
不能运行 总是找不到符号
怎么回事啊
提问时间:2021-03-31
答案
已运行(未作修改).运行结果:
(10.5,20.1)-(100.0,50.0)
94.36238657431254
(-1.0,0.0)-(0.0,1.0)
1.4142135623730951
(10.5,20.1)-(100.0,50.0)
94.36238657431254
(-1.0,0.0)-(0.0,1.0)
1.4142135623730951
举一反三
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
1,人们染上烟瘾,最终因吸烟使自己丧命.
最新试题
- 1翻译西班牙语句子
- 2求一篇以《做好每一件事情》为题的初一作文,500字左右
- 3某商场用50000元从外地采购回一批“T恤衫”,由于销路好,商场又紧急调拨18.6万元采购回比第一次多2倍的“T恤衫”,但第二次比第一次进价每件贵12元,商场在出售时统一按每件80元的标价出售,为了缩
- 4已知函数f(x)=sin2xcosφ-2cos²xsin(π-φ)-cos(π/2+φ) 1.化简y=f(x)的表达式并求函数的周期
- 5一部电影放映不足2小时,有人发现从开始放映时到结束,钟面上的时针与分针正好交换位置.问这部电影放映了多长时间?
- 6a few和several之间的区别是什么?
- 7(2008•惠州三模)a、b两个物体从同一地点同时出发,沿同一方向做匀变速直线运动,若初速度不同,加速度相同,则在运动过程( ) A.a、b的速度之差保持不变 B.a、b的速度之差与时间
- 8I+felt+nervous+at+the+party是甚么意思?
- 9请翻译一句很简单的话
- 10英语翻译
热门考点