This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main { | |
private static String getCode(int code) { | |
switch (code) { | |
case 100: | |
return "CONTINUE"; | |
case 101: | |
return "SWITCHING_PROTOCOLS"; | |
case 102: |