Java Puzzle 3 (spot the bug if one exists)
public class Puzzle3 { | |
public static void main(String[] args) { | |
// find and print NOP | |
for(byte b = Byte.MIN_VALUE; b < Byte.MAX_VALUE; b++) { | |
if(b == 0x90) { | |
System.out.print("Found: 0x90 NOP byte"); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Adapted from Java Puzzlers: Traps, Pitfalls, and Corner Cases - Puzzle #24