0
public void displayResults
{
    for(int i = 0; i < arrayLength; i++)
    {
          System.out.printf("Value %d = %.6f\n", i, list[i]);
    }

    System.out.printf("Sum of all values = %0.6f\n", sum);
    System.out.printf("Average of all values = %0.6f\n", average);
    System.out.printf("Largest value = %0.6f\n", largest);
    System.out.printf("Smallest value = %0.6f\n", smallest);
}

我正在变老error: '(' expected

{应该在的地方,我真的看不出我所拥有的有什么问题。盯着这个同样的错误差不多一个小时了。真的希望有一双新的眼睛能看到这个问题。

public void displayResults
 ==>   {
       for(int i = 0; i < arrayLength; i++)
       {
4

1 回答 1

7
public void displayResults ()
                           ^^

即使没有参数,也需要添加参数列表括号。

于 2013-01-15T02:41:42.580 回答