Increment Operator Example Java Program
Definition
Operators are constructs which behave generally like functions, but which differ syntactically or semantically from usual functions. Common simple examples include arithmetic (addition with +, comparison with >) and logical operations (such as AND or &&). More involved examples include assignment (usually = or :=), field access in a record or object (usually .), and the scope resolution operator (often ::). Addition and assignment operator means "find the number stored in the variable x, add 1 to it, and store the result of the addition in the variable x." The increment operator increases the value of its operand by 1. The operand must have an arithmetic or pointer data type, and must refer to a modifiable data object.Syntax
x=y++;
Increment Operator Example Program
class IncrementOperatorDemo { public static void main(String[] args) { for (int i = 1; i < 10; i += 2) { for (int j = 0; j < 9 - i / 2; j++){ System.out.print(" "); } for (int j = 0; j < i; j++){ System.out.print("*"); } System.out.print("\n"); } for (int i = 7; i > 0; i -= 2) { for (int j = 0; j < 9 - i / 2; j++){ System.out.print(" "); } for (int j = 0; j < i; j++)} System.out.print("*"); } System.out.print("\n"); } } }
Sample Output
Output is: * *** ***** ******* ********* ******* ***** *** *
Operator Programs
- Addition Operator Example Java Program
- Division And Assignment Operator Example Java Program
- Modulus And Assignment Operator Example Java Program
- Equal To And Not Equal To Operator Example Java Program
- Greater Than Operator Example Java Program
- Lesser Than Operator Example Java Program
- Increment Operator Example Java Program
- Decrement Operator Example Java Program
- Logical And Operator Example Java Program
- Logical Or Operator Example Java Program
- Instance Of Operator Example Java Program
- Subtraction Operator Example Java Program
- Ternary Operator Example Java Program
- Multiplication Operator Example Java Program
- Division Operator Example Java Program
- Modulus Operator Example Java Program
- Assignment Operator Example Java Program
- Addition And Assignment Operator Example Java Program
- Subtraction And Assignment Operator Example Java Program
- Multiplication And Assignment Operator Example Java Program
Read More Articles
- Multiple Inheritance Using Interface Example Java Program
- Single Inheritance Example Java Program
- Multilevel Inheritance Example Java Program
- Hierarchical Inheritance Example Java Program
- Find all Substrings of a given string Example Java Program
- Create Matrix Example Java Program
- Sum Of Three Numbers Example Java Program
- Heap Sort Example Java Program
- Twin Prime Example Java Program
- Compile Time Polymorphism Example Java Program