Hello everyone 
I learn java on my own from the book "Practical JAVA course". My problem is that I stopped on a task which reads "Declare an int variable of any name. Assign it the value 256. Do three things: bit shift right two places, bit shift left two places, and bit shift to the right two places with zeros. Display the result of all three actions on the screen. "
I managed to create something like this:
The only problem is that somewhere I should change my variable to a binary system, but I don't really know how; / Could someone help / direct?

I learn java on my own from the book "Practical JAVA course". My problem is that I stopped on a task which reads "Declare an int variable of any name. Assign it the value 256. Do three things: bit shift right two places, bit shift left two places, and bit shift to the right two places with zeros. Display the result of all three actions on the screen. "
I managed to create something like this:
Code: Java
The only problem is that somewhere I should change my variable to a binary system, but I don't really know how; / Could someone help / direct?