方法并传递一个双

时间:2013-02-26 14:55:43

标签: class variables declare

我一直在这一段代码上收到错误消息。我尝试声明并以不同方式传递它。如果代码不是那么先进,我很抱歉。我还是个初学者。

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package javaapplication5;
import java.util.Scanner;

/**
 *
 * @author period3
 */
public class JavaApplication5 {

/**
 * @param args the command line arguments
 */


public static void main(String[] args) {


    double theresult;
    theresult = area(double radius);

Scanner reader;
reader = new Scanner (System.in);
System.out.println("Please enter the coordinates of a circle:");
newLine();
System.out.println("Outside point:");
newLine();
System.out.println("x1:");
int x1 = reader.nextInt();
newLine();
System.out.println("y1:");
int y1 = reader.nextInt();
newLine();
System.out.println("Center Point:");
newLine();
System.out.println("x2:");
int x2 = reader.nextInt();
newLine();
System.out.println("y2:");
int y2 = reader.nextInt();

System.out.println("The area of the circle is" + theresult);

}
 public static double distance(int x1, int y1, int x2, int y2) 
{
double dx = x2 - x1;
double dy = y2 - y1;
double dsquared = dx*dx + dy*dy;
double result = Math.sqrt (dsquared);
return result;
}

public static double area(int x1, int y1, int x2, int y2) {
double radius = distance (x1, y1, x2, y2);
return radius;
}

public static double area(double radius)
{
    double areaCircle;
    areaCircle = (3.14 * (radius * radius));
    return areaCircle;
}


//NewLine Method
public static void newLine () {
System.out.println ("");
}
}
第24行的

和我的错误信息(theresult = area(double radius):

unexpected type
  required: value
  found:    class

'.class' expected

';' expected
----

1 个答案:

答案 0 :(得分:0)

在使用区域方法之前,您需要先计算半径:

double radius = distance(x1, y1, x2, y2);

然后你需要设置结果:

theResult = area(radius);

这些都应该在用户输入后发生(在他们为您提供x1y1x2y2以及之前的值之后/ strong>您打印theResult

请注意我如何调用您的distancearea方法。只需将局部变量输入参数即可。

theResult = area(double radius); <- This is incorrect syntax.