Showing posts with label left Shift.right Shift. Show all posts
Showing posts with label left Shift.right Shift. Show all posts

Thursday, March 26, 2009

Left shift and right shift usig java

public class Shift
{
public static void main(String [] x)
{
int c=5;
System.out.println("After Left Shifting 5 by 2 points "+(c<<2 ));
System.out.println("After Right Shifting 5 by 2 points "+(c>>2 ));

}
}