私は最近、自分の Mac に Eclipse をインストールしました。最初の印刷行でコンストラクトエラーが発生し続け、メイン宣言で構文エラーが発生します。どうしたのかわからない。
import static java.lang.System.out;
import java.util.Scanner;
public static void main (string args[])
{
double a, b, c, d, e, f;
Scanner input = new Scanner();
out.println(" Please enter the first number: ");
a = imput.nextDouble;
out.println("Please enter the second number: ");
b = imput.nextDouble;
out.println ("Please enter the third number : ");
c = imput.nextDouble;
out.println ("Please enter in fourth number : ");
d = imput.nextDouble;
out.println(" Please enter in fifth number : ");
e = imput.nextDouble;
double sum = a + b + c + d + e;
}
これは完了していませんが、私が見る限り、すべての変数の値があり、すべてが本来あるべき方法で閉じられています。