我不知道我在这里有什么错,但它不会编译。我收到的错误消息是/ “else”没有“if” / / 不是声明 / / “else”没有“if” /
我正在做我的家庭作业中的样本如何显示,我仍然收到此错误。请有人帮我Math.PI.我完全迷失了。
import java.util.Scanner;
import java.text.DecimalFormat;
public class CircleCalc
{
public static void main(String[]args)
{
Scanner keyboard = new Scanner(System.in);
double radius;
double area = Math.PI * radius * radius;
double circum = 2 * radius * Math.PI;
DecimalFormat formatter = new DecimalFormat("#0.0000");
int choice;
System.out.println("CIRCLE CALCULATOR MENU");
System.out.println("1) Calculate the Area of a Circle");
System.out.println("2) Calculate the CIrcumference of a Circle");
System.out.println("3) Quit the Program");
System.out.println("Make a selection by choosing a number:");
choice = keyboard.nextInt();
if (choice == 1);
{
radius = 105.7;
System.out.println(" The Area of the Circle with radius 105.7 is " + area);
}
else if (choice == 2);
{
radius = 62.7;
System.out.println("The Circumference of the Circle with radius 62.7 is " + circum);
}
else if (choice == 3);
{
System.out.println("You have chosen to quit the program.");
}
}
}
答案 0 :(得分:1)
你不要在if (choice == 1);
之后加上分号。正确的方法是......
if (choice == 1)
{
radius = 105.7;
System.out.println(" The Area of the Circle with radius 105.7 is " + area);
}
else if (choice == 2)
{
radius = 62.7;
System.out.println("The Circumference of the Circle with radius 62.7 is " + circum);
}
else if (choice == 3)
{
System.out.println("You have chosen to quit the program.");
}