Java – Bitwise and Bit Shift Operators

Java – Bitwise and Bit Shift Operators

/** * Bitwise and Bit Shift Operators * * Constantes: move 1bit para casa determinada após ‘<<‘ x * * Varival i: Recebe uma operaçao OU das constantes pedidas; * A – 001 * B – 010 * C – 100 (Operacao OU) * _________ * Resp: 111 (i = 111 (ou 7 decimal)) * […]

Rolar para o topo