Arithmetic Operators in Java
0 117
Arithmetic Operators in Java
In Java, arithmetic operators are used to perform basic mathematical computations on numeric data types like int
, float
, double
, etc. These operators are frequently used in programming for performing calculations such as addition, subtraction, multiplication, and more. Understanding these operators is essential for anyone starting with Java.
Types of Arithmetic Operators
Java provides the following arithmetic operators:
+
(Addition)-
(Subtraction)*
(Multiplication)/
(Division)%
(Modulus)
Addition Operator (+)
The +
operator adds two values. It can also be used for string concatenation.
int a = 15; int b = 10; int result = a + b; System.out.println("Sum: " + result); // Output: Sum: 25
Subtraction Operator (-)
This operator subtracts the second operand from the first.
int a = 20; int b = 5; int result = a - b; System.out.println("Difference: " + result); // Output: Difference: 15
Multiplication Operator (*)
Used to multiply two numeric values.
int a = 6; int b = 4; int result = a * b; System.out.println("Product: " + result); // Output: Product: 24
Division Operator (/)
The division operator returns the quotient of the division. Keep in mind that dividing integers results in an integer output (no decimal part).
int a = 20; int b = 4; int result = a / b; System.out.println("Quotient: " + result); // Output: Quotient: 5
To get a decimal result, use float
or double
:
double a = 22; double b = 7; double result = a / b; System.out.println("Precise Result: " + result); // Output: Precise Result: 3.142857142857143
Modulus Operator (%)
The modulus operator gives the remainder of a division operation.
int a = 17; int b = 3; int result = a % b; System.out.println("Remainder: " + result); // Output: Remainder: 2
Using Arithmetic Operators in Expressions
Arithmetic operators can be combined in expressions. Java evaluates them based on precedence.
int result = 10 + 5 * 2; System.out.println("Result: " + result); // Output: Result: 20
Here, multiplication is performed first because it has higher precedence than addition.
Conclusion
Arithmetic Operators in Java are simple yet powerful tools for performing calculations in your programs. Whether you're building a calculator, processing data, or creating complex logic, mastering these operators is a must. Practice them well to strengthen your Java programming foundation.
If you’re passionate about building a successful blogging website, check out this helpful guide at Coding Tag – How to Start a Successful Blog. It offers practical steps and expert tips to kickstart your blogging journey!
For dedicated UPSC exam preparation, we highly recommend visiting www.iasmania.com. It offers well-structured resources, current affairs, and subject-wise notes tailored specifically for aspirants. Start your journey today!

Share:
Comments
Waiting for your comments