4

得到一个没有 if 语句的 else:

import java.util.Scanner;

public class LazyDaysCamp
{
    public static void main (String[] args)
    {
        int temp;
        Scanner scan = new Scanner(System.in);

        System.out.println ("What's the current temperature?");
        temp = scan.nextInt();
        if (temp > 95 || temp < 20);
            System.out.println ("Visit our shops");
            else if (temp <= 95)
                if (temp >= 80)
                System.out.println ("Swimming");
                else if (temp >=60) 
                    if (temp <= 80)
                    System.out.println ("Tennis");
                    else if (temp >= 40)
                        if (temp < 60)
                        System.out.println ("Golf");
                        else if (temp < 40)
                            if (temp >= 20)
                            System.out.println ("Skiing");                                                                                                                                                                                                                                                                   
    }
}

如果这就是它看起来像这样的原因,我需要使用级联。另外,如果我正确地进行了级联,你能告诉我吗?如果我只是尽力了解级联的含义,我就无法找到级联的好例子。

LazyDaysCamp.java:14: error: 'else' without 'if'
            else if (temp <= 95)
            ^
1 error

这就是我得到的错误

4

4 回答 4

20

删除此行末尾的分号:

if (temp > 95 || temp < 20);

请使用大括号!Java不像Python,缩进代码会创建一个新的块作用域。最好安全地使用它并始终使用大括号 - 至少在您获得更多的语言经验并准确理解何时可以省略它们之前。

于 2012-10-25T00:09:27.020 回答
2

问题是第一个 ifif (temp > 95 || temp < 20);与使用普通缩进相同

if (temp > 95 || temp < 20)
{
}

也就是说,如果温度不在 20 到 95 之间,则执行一个空块。没有别的了。

下一行 else 然后没有与之对应的 if ,因此会产生您的错误

处理这个问题的最好方法是始终使用大括号来显示 if 之后执行的内容。这并不意味着编译器会捕获错误,但首先您更有可能通过查看缩进看到任何问题,并且错误可能看起来更具可读性。但是,您可以使用 eclipse、checkstyle 或 FindBugs 等工具来告诉您是否未使用 {} 或使用空块。

更好的方法可能是在重新测试时整理逻辑

if (temp > 95 || temp  < 20)  
{
  System.out.println ("Visit our shops");
} else if (temp >= 80)
{
    System.out.println ("Swimming");
} else if (temp >=60)
{ 
   System.out.println ("Tennis");
} else if (temp >= 40)
{
     System.out.println ("Golf");
} else if (temp >= 20)
{
   System.out.println ("Skiing");                                                                                                                                                                                                                                                                   
}
于 2012-10-25T00:13:32.627 回答
1

我将为您重新格式化。如果你使用大括号,你永远不会遇到这个问题。

public class LazyDaysCamp
{
    public static void main (String[] args)
    {
        int temp;
        Scanner scan = new Scanner(System.in);

        System.out.println ("What's the current temperature?");
        temp = scan.nextInt();
        if (temp > 95 || temp < 20) //<-- I removed the semicolon that caused the error
        {
            System.out.println ("Visit our shops");
        }
        else if (temp <= 95)
        {
            if (temp >= 80)
            {
                System.out.println ("Swimming");
            }
            else if (temp >=60)
            {
                if (temp <= 80)
                {
                    System.out.println ("Tennis");
                }
                else if (temp >= 40)
                {
                    if (temp < 60)
                    {
                        System.out.println ("Golf");
                    }
                    else if (temp < 40)
                    {
                        if (temp >= 20)
                        {
                            System.out.println ("Skiing");
                        }
                    }
                }
            }
        }
    }
}
于 2012-10-25T01:28:35.653 回答
0

出现此错误是因为您在 if 语句后输入了分号。删除第 12 行第一个 if 语句末尾的分号。

    if (temp > 95 || temp < 20);
于 2019-09-21T13:12:16.543 回答