Skip to content

Instantly share code, notes, and snippets.

@hyst3ric41
Created June 23, 2018 00:50
Show Gist options
  • Save hyst3ric41/097ab46d365cc349866d17e01344533a to your computer and use it in GitHub Desktop.
Save hyst3ric41/097ab46d365cc349866d17e01344533a to your computer and use it in GitHub Desktop.
public class ejemplo1 {
final static byte[] n = { 4, 2, 5, 1, 6, 0, 6, 9, 5, 4, 5, 0 };
static int resultado = 0;
public static void main(String[] args) {
resultado = (n.length)*8;
resultado += 3;
System.out.println("El resultado es: "+resultado);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment