0
RectangleArea.java:21: error: method getLength in class RectangleArea cannot be applied to given types;
length = getLength();
^
required: double,Scanner
found: no arguments
reason: actual and formal argument lists differ in length
import java.util.Scanner;
public class RectangleArea
{
public static void main (String [] args)
{
Scanner keyboard = new Scanner (System.in);
double length, // The rectangle's length
width, // The rectangle's width\
area; // The rectangle's area
welcomeBanner();
// Get the rectangle's length from the user.
length = getLength();
}
static void getLength(double aLength, Scanner aKeyboard)
{
System.out.print("Enter the rectangle's length: ");
aLength = aKeyboard.nextDouble();
System.out.println("");
return aLength;
}
}
私はこの問題を解決するにはどうすればよいですか?
'getLength'のパラメータを見てください...あなたが渡している引数を見てください(なし)... –
引数の説明はできますか?私はちょっとそこにいます。 –
'getLength(...)'の目的は何ですか?これは、入力を求められた値を返します。 – Ceelos