Increment Operator Example in Java
On this page (10sections)
Introduction
Increment Operator is a classic Java console program that demonstrates the concept with complete source code and sample output. Operators combine values, compare results and update variables — core skills for every Java program.
This tutorial walks through the program line by line, explains how the logic works, and highlights best practices you can apply in your own code.
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
*
***
*****
*******
*********
*******
*****
***
*
When to use
Use this increment operator example when learning or revising core Java syntax.
How it works
-
Execution begins in the
mainmethod — the JVM calls this method when you run the class. -
for (int i = 1; i < 10; i += 2) {updates a variable used in the calculation or output. -
for (int j = 0; j < 9 - i / 2; j++){updates a variable used in the calculation or output. -
A
println/printcall writes text to the console — part of the sample output below. -
for (int j = 0; j < i; j++){updates a variable used in the calculation or output. -
A
println/printcall writes text to the console — part of the sample output below. -
A
println/printcall writes text to the console — part of the sample output below. -
A
println/printcall writes text to the console — part of the sample output below.
Best Practices
- Use meaningful variable and class names that describe their purpose.
- Compile and run the program locally — modify values to see how output changes.
- Read compiler errors carefully; they usually point to the exact line to fix.
Common Mistakes
- Copying code without understanding each line — practice by changing one statement at a time.
- Mismatching the public class name and the
.javafilename. - Forgetting semicolons at the end of statements.