-3

エラーメッセージ ")" が表示され続けます。理由を特定できません。

import java.util.Scanner;
public class PartA extends ChangeDrawer
    {

       public static void main (String[] args)
       {
            Scanner input = new Scanner(System.in);
            System.out.println("Enter P to make a purchase & receive your change");
            System.out.println("Enter L to load the Change drawer");
            System.out.println("Enter H to write the contents of the Change Drawer to a
            web Page");
            System.out.println("Enter E to exit the program"); //this is the user prompt

            String selection = input.nextLine();

           if{ //Error message: "(" expected

                (String selection=L)

                cDraw.loadFloat(floatDrawer);


            }
        }
    }  
4

2 に答える 2

4

ifステートメントに条件が必要です。

if(condition) {
}
于 2012-07-22T11:55:29.317 に答える
1

全体の状態は少しめちゃくちゃです。

私はそれがこのようなものであることを意味していると思います:

if(selection.equals("L")) {
  cDraw.loadFloat(floatDrawer);
}
于 2012-07-22T12:04:33.443 に答える