Conditional Statements - More Exercises - 08. Fuel Tank
Трудно ми е да си намеря грешката, но очевидно е някъде там :)
package HomeAlone.Example.MoreExercises; import java.util.Scanner; public class FuelTank1 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String text = scanner.nextLine(); double fuel = Double.parseDouble(scanner.nextLine()); if (text.equals("Diesel") || text.equals("Gasoline") || text.equals("Gas")) { if (fuel >= 25) { System.out.printf("You have enough %s.", text.toLowerCase()); } else if (fuel < 25) { System.out.printf("Fill your tank with %s!", text.toLowerCase()); } } else { System.out.println("Invalid fuel!"); } } }
Явно не ме е харесал сутринта :). Сега мина с 14/100 :)
Странно, при мен дава 100/100 в Judge
Извинявай, 100 от 100 са.... Благодаря :)