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++)
{