From 5733aab8a4456a95217dad89738bcc211df493ea Mon Sep 17 00:00:00 2001 From: Shalom Vanderhoof Date: Thu, 28 Feb 2019 12:45:51 -0500 Subject: [PATCH] Coreccting 0 branch in if statement --- src/Main.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main.java b/src/Main.java index a574e12..fa5f0d7 100644 --- a/src/Main.java +++ b/src/Main.java @@ -33,7 +33,7 @@ public static void main(String[] args) { System.out.println("\nThis is the correct choice"); } else if (numero == 0) { - System.out.println("\nGitHub is sad now..."); + System.out.println("\nThis is the WRONG choice..."); } else { System.out.println("\nThat is invalid input, so run the program again, please :) ");