Mega Code Archive

 
Categories / Java / Language Basics
 

Shift to the left three

public class Main {   public static void main(String[] argv) throws Exception {     byte c = - 10;     System.out.println(c << 3); //   } }