-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBitwise.java
32 lines (30 loc) · 866 Bytes
/
Bitwise.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//To demonstrate bitwise operators
import java.util.*;
class Bitwise
{
public static void main(String args[])
{
int a,b,c,ans;
Scanner sc=new Scanner(System.in);
System.out.print("Enter value of a: ");
a=sc.nextInt();
System.out.print("Enter value of b: ");
b=sc.nextInt();
System.out.print("Enter value of c: ");
c=sc.nextInt();
ans=a & b;
System.out.println("Bitwise ANDing a & b: "+ans);
ans=a | b;
System.out.println("Bitwise ORing a | b: "+ans);
ans=a ^ b;
System.out.println("Bitwise EX-ORing a ^ b: "+ans);
ans=c<<1;
System.out.println("Bitwise LEFT SHIFT c<<1: "+ans);
ans=c>>1;
System.out.println("Bitwise RIGHT SHIFT c>>1: "+ans);
ans=c>>>1;
System.out.println("Bitwise RIGHT SHIFT WITH FILL ZERO c>>>1: "+ans);
ans=~a;
System.out.println("Bitwise COMPLEMENT ~a: "+ans);
}
}