Saturday, April 22, 2017

Java - Example for Assignment Operators

Copy and paste the following Java program in Test.java file. Compile and run this program −

Example

public class Test {

public static void main(String args[]) {
int a = 10;
int b = 20;
int c = 0;

c
= a + b;
System.out.println("c = a + b = " + c );

c
+= a ;
System.out.println("c += a = " + c );

c
-= a ;
System.out.println("c -= a = " + c );

c
*= a ;
System.out.println("c *= a = " + c );

a
= 10;
c
= 15;
c
/= a ;
System.out.println("c /= a = " + c );

a
= 10;
c
= 15;
c
%= a ;
System.out.println("c %= a = " + c );

c
<<= 2 ;
System.out.println("c <<= 2 = " + c );

c
>>= 2 ;
System.out.println("c >>= 2 = " + c );

c
>>= 2 ;
System.out.println("c >>= 2 = " + c );

c
&= a ;
System.out.println("c &= a = " + c );

c
^= a ;
System.out.println("c ^= a = " + c );

c
|= a ;
System.out.println("c |= a = " + c );
}
}
This will produce the following result −

Output

c = a + b = 30
c += a = 40
c -= a = 30
c *= a = 300
c /= a = 1
c %= a = 5
c <<= 2 = 20
c >>= 2 = 5
c >>= 2 = 1
c &= a = 0
c ^= a = 10
c |= a = 10

No comments:

Post a Comment

150+java interview questions and answers

Java Platform 1 . Why is Java so popular? 2 . What is platform independence? 3 . What is bytecode? 4 . Compare JDK vs JVM vs JRE 5 ....