From 9e4fb1ccbff992d7ff35d284cdc4b472e88b8d13 Mon Sep 17 00:00:00 2001 From: Nguyen Quang Huy <78330758+Dev789-del@users.noreply.github.com> Date: Mon, 25 Oct 2021 20:23:05 +0700 Subject: [PATCH] Update Main.java --- .../src/modern/challenge/Main.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Chapter01/P29_CompareTwoUnsignedNumbers/src/modern/challenge/Main.java b/Chapter01/P29_CompareTwoUnsignedNumbers/src/modern/challenge/Main.java index 7f27775d..8167c9eb 100644 --- a/Chapter01/P29_CompareTwoUnsignedNumbers/src/modern/challenge/Main.java +++ b/Chapter01/P29_CompareTwoUnsignedNumbers/src/modern/challenge/Main.java @@ -9,9 +9,9 @@ public static void main(String[] args) { System.out.println("Signed ints: " + Integer.MIN_VALUE + ", " + Integer.MAX_VALUE); System.out.println("-----------------------------------------------"); - System.out.println("Result of comparing signed: " + resultSigned); + System.out.println("Result of comparing signed: " + resultSigned); // Why we have to compare the signed value?Do the result is the same as in the unsigned result? System.out.println("Result of comparing unsigned: " + resultUnsigned); } } -; \ No newline at end of file +;