Mega Code Archive

 
Categories / Java / Language Basics
 

Signed shift to the right

public class Main {   public static void main(String[] argv) throws Exception {     byte b = 11;     System.out.println(b >> 1);    } }