Como funciona este codigo? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
1st Feb 2020, 2:04 AM
Enrique
Enrique - avatar
2 Respostas
+ 3
It is shift right and shift left. Bitwise operator. Example binary 0010 = 2 decimal If we use shift left << 1 then.. 0100 = 4 decimal It is the same 2 * 2 = 4 ----------------------------- Example left shift a << b <=> a * 2 ^ b Example right shift a >> b <=> a / 2 ^ b ____________________ ********************* Your code ********************* x=6 (6 >> 2) << 6 | (6 / 2^2 = 1) (1) << 6 1 * 2^6 = 64
1st Feb 2020, 3:14 AM
Pedro H.J
Pedro H.J - avatar
+ 1
Tk.very interesting.šŸ˜‹
2nd Feb 2020, 6:21 PM
Enrique
Enrique - avatar