Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

}
;
;