Obtenir une instruction else sans if :
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");
}
}
J'ai besoin d'utiliser un if en cascade, c'est pourquoi cela ressemble à cela. Par ailleurs, pourriez-vous me dire si j'ai fait le cascading if correctement ? Je n'ai pas réussi à trouver un bon exemple de cascading if, alors j'ai fait de mon mieux en sachant ce que signifie le terme "cascading".
LazyDaysCamp.java:14: error: 'else' without 'if'
else if (temp <= 95)
^
1 error
C'est l'erreur que je reçois