我需要幫助搞清楚我做錯了什麼。這是我的編碼到目前爲止。 我想繪製一個圓上的座標。我得到一個不是一個聲明錯誤。我得到一個不是一個聲明錯誤
public class MathClass
{
public static void main (String [] args)
{
double y1;
double y2;
System.out.println("Points on a Circle of Radius 1.0");
System.out.printf ("%6s" , "x1", "y1", "x1" , "y2");
System.out.println ("----------------------------------");
for (double x1 = 1.00; x1> -1.10; x1 + -0.10)
{
double x1sq= Math.pow(x1,2);
double r = 1;
double y1sq = r- x1sq;
y1= Math.sqrt(y1sq);
System.out.printf("%.2f", x1, " ", y1);
}
}
請發佈完整的錯誤。 – thegrinner 2013-05-02 15:50:20