Learning the operators of the Java programming language is a good place to start. Operators are special symbols that perform specific operations on one, two, or three operands, and then return a result. Increment/Decrement operators: Increment and decrement operators are known as Unary operators. They require only one operand. Increment operator:… Continue Reading Java program for increment and decrement (pre and post)

In this Program the user is asked to enter two numbers. Based on the numbers the division of two numbers is per Algorithm: Step 1: Start. Step 2: Declare variables, say a, b and c. Step 3: c = a/b; Step 4: Display result. Step 5: Stop. Source code:

Continue Reading Java program for Division of two numbers

In this program user is asked to enter two integers and the sum operation is performed. Source code:

Output: C:\Users\Desktop\new>javac  Add.javaC:\Users\Desktop\new>java Add *** www.programmingposts.com *** << Addition of two numbers without using Third Variable >> Enter first number to be added: 9 Enter Second number to be added: 6… Continue Reading Java Program to add two numbers without using third variable