Java program to perform the assignment operations
KW.java
Output
kodingwindow@kw:~$ javac KW.java
kodingwindow@kw:~$ java KW ——————————————————————————————————————————— Program to perform the assignment operations ——————————————————————————————————————————— Value Of a | 10 Value Of b | 50 Value Of a+=b | 60 Value Of a-=b | 10 Value Of a*=b | 500 Value Of a/=b | 10 Remainder a%=b| 10 Value Of a^=b | 56 Value Of a|=b | 58 Value Of a&=b | 50 ——————————————————————————————————————————— kodingwindow@kw:~$
What Next?
Java program to find the size of primitive data types
Java program to calculate the area of a circle
Java program to perform the division of two numbers
Advertisement