このエラーの原因がわかりません。先生と私はそれを調べましたが、何が悪いのかわかりませんでした。
import java.util.Scanner;
public class MailAssignment
{
public static void main(String [] args){
Scanner userinput = new Scanner(System.in);
char p;
char f;
double price = 0;
System.out.println("First class or priority?");
char type = userinput.next().charAt(0);
System.out.println("How much does the package weigh? (in ounces)");
double weight = userinput.nextDouble();
switch (type){
case p:
if (weight > 16)
price = weight * 3.95;
else if (weight > 32)
price = (1.20 * (weight / 16));
else
price = 3.50 * weight;
break;
case f:
if (weight < 1 )
price = 0.34;
else if ( weight > 1)
price = 0.34 + (weight * 21);
else if (weight > 13)
price = weight * 3.95;
else if (weight > 32)
price = 1.20 * (weight / 16);
else
price = 3.50 * weight;
break;
}
System.out.println("Your price is: " +price);
}
}
コンパイル時に「Constantexpressionrequired」エラーがスローされ、ケースp:行を指しますが、f:に対してもスローされます。これらを切り替えると、完全にオフにする必要があります。