Monday, August 29, 2016


Arithmetic Operator

The Arithmetic Operators are.... => + => - => * => / => % We will see a program in JAVA on Arithmetic Operators class Arith { Public Static void main(Sring a[]) { int a=10, b=5; System.Out.println("the value of a="+a); System.Out.println("the value of b="+b); System.Out.println("the value of a.b="+(a+b)); } } Lets see about the remaining operators in our next post. Have a tremendous Tuesday......

No comments:

Post a Comment