search
HomeJavajavaTutorialArithmetic Operators in Java

Java provides a rich operator environment like Arithmetic, Relational, Bitwise, and Logical. Java arithmetic operators are used to perform simple mathematical operations. In Java, we consider Addition, Subtraction, Multiplication and Division operators as Basic Arithmetic operators. For arithmetic operators, operands should of Numeric Type. Java allows to use of arithmetic operations on char type; in java, char is considered a subset of int. Some binary arithmetic operators are also used as unary operators; for example, the subtraction operator is also used for negating the positive value. If anyone of the operand types is double, float, long. The other operand is also converted to double, float, long, respectively.

Start Your Free Software Development Course

Web development, programming languages, Software testing & others

List of Arithmetic Operators in Java

The following table shows the list of all arithmetic operators in java.

Operator Description
+ Addition (Also used as Unary Plus).
Subtraction (Also used as Unary Minus).
* Multiplication
/ Division
% Modulus
++ Increment
Decrement

The above-listed operators with their functions and syntax are explained below.

1. Addition Operator “+.”

An addition operator is a Unary operator, i.e. arithmetic operation performed between two operands. Basically, this “+” operator is used to perform a simple arithmetic Addition operation.

  • Addition operator + is also used with String type operands to concatenate two separate strings.
  • In addition, Operator + is also used as Unary +; it returns the positive value of a variable.
  • When it is applied with Numerical Operands, it performs Addition Operation, and when it is applied with String Operands, it performs concatenation operation.
  • Java allows us to perform arithmetic Addition operation on char type variables.

Syntax:

"Result=Operand1 + Operand2" or "ResultString=String1 + String2" Or "+Operand"

Operan1 & operand2 are numeric types and returns the result of the numeric type. ResultString is a new concatenated string of String1+String2.

2. Subtraction Operator “-”

Subtraction operator “” performs basic subtraction operation. This operator is a binary operator. This arithmetic operator applied only with numeric operators.

  • Subtraction operator can also be used as a unary – operator to negate the numeric value of Operand.
  • Java allows us to perform arithmetic Subtraction operation on char type variables since char is considered a subset of int in java.

Syntax:

Result = Operand1 – Operand2 or "- Operand"

Operand1 & Operand2 are of any numeric type.

3. Multiplication Operator “*.”

The multiplication operator is also a binary operator. This operator applied only with numerical operands. Multiplication operator performs basic mathematical multiplication operation.

Syntax:

Result = Operand1 * Operand2

Operand1 & operand2 are two numeric values of int, long, double or float.

4. Division Operator “/.”

The division operator performs Mathematical division operation. This operator is also a binary operator; in case both operands are of type integer, then the result will be of type integer. If any operand of is of type Float then returns a result is of type float. When dividing any numeric value with 0 Java Exception, Handler throws DivideByZeroException of type ArithmaticException.

Syntax:

result = Operand1 / Operand2;

Operand1 & Operand2 are of any numeric values. Operand2 must be any non-zero value.

5. Modulus Operator “%.”

The modulo operator returns the remainder of the two operands. This operator is also a binary operator. Modulo operator can be applied with integer or any other floating-point type variables. If in case trying to perform any floating-point number with modulo zero, throws an ArithmaticException and returns value NaN.

Syntax:

Result = Operand1 % Operand2;

Operand1 & Operand2 are any numeric values. Operand2 must be a non-zero numeric value.

6. Increment Operator “++.”

Increment operator “++” increments operand value by 1 at a time. An increment operator is a unary operator, i.e. it applied with only one operand. This operator can be used as Pre Increment or Post Increment.

  • Pre Increment: In pre-increment, the value is incremented first; later, it has been used. And the operator is prefixed with the operand.
  • Post Increment: In post-increment – the previous value of a variable is used first, and later it has been incremented. The operator is postfixed with the operand.

An increment operator is used with any numerical variables.

7. Decrement Operator “–”

Decrement Operator “–” is a unary operator. This operator decrements operand value by 1 at a time. This operator can be used as Pre Decrement or Post Decrement.

  • Pre Decrement: In Pre Decrement -the operator is prefixed with Operand. The first operand value is decrement by 1 later; its value has been used.
  • Post Decrement: In Post, Decrement-operator is postfixed with the operand. Here first, the operand previous value is used, and later it has been Decremented. Decrement applied to any numeric variables.

Example to Implement Arithmetic Operators in Java

Below are the examples of arithmetic operators in java.

Code:

public class OperatorDemo1
{
public static void main(String[] args)
{
int a=10;
int b=20;
int c=30;
int d=40;
int e=10;
System.out.println("");
System.out.println("a="+a+" b="+b+" c="+c+" d="+d);
System.out.println("");
System.out.println("Addition Operator +:a + b ="+(a+b));
System.out.println("Subtraction Operator -:b - a ="+(b-a));
System.out.println("Multiplication Operator *:a * b ="+(a*b));
System.out.println("Division Operator /:a / b ="+(b/a));
System.out.println("Unary Minus (d=40):"+(-d));
System.out.println("");
System.out.println("");
//Increment Operator ++
System.out.println("Value of e="+e+" After PreIncrement ++e:"+(++e));
System.out.println("Value of e="+e+" After PostIncrement :"+(e++)+" (e++):e= "+e);
System.out.println("");
//Decrement Operator --
System.out.println("");
System.out.println("Value of e="+e+" After PreDecrement (--e):"+(--e));
System.out.println("Value of e="+e+" After PostDecrement :"+(e--)+" (e--):e= "+e);
}
}

Output:

Arithmetic Operators in Java

Conclusion

Arithmetic operators perform simple mathematical operations. Since every programming languages use arithmetic operators but compared to other languages, Java provides more flexibility. We can make use of single arithmetic operators for unary plus as well as for string concatenation operation. It even reduces code complexity. Developers can easily understand operation just by observing the type of operands associated with operation.

The above is the detailed content of Arithmetic Operators in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do I use Maven or Gradle for advanced Java project management, build automation, and dependency resolution?How do I use Maven or Gradle for advanced Java project management, build automation, and dependency resolution?Mar 17, 2025 pm 05:46 PM

The article discusses using Maven and Gradle for Java project management, build automation, and dependency resolution, comparing their approaches and optimization strategies.

How do I create and use custom Java libraries (JAR files) with proper versioning and dependency management?How do I create and use custom Java libraries (JAR files) with proper versioning and dependency management?Mar 17, 2025 pm 05:45 PM

The article discusses creating and using custom Java libraries (JAR files) with proper versioning and dependency management, using tools like Maven and Gradle.

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

How can I use JPA (Java Persistence API) for object-relational mapping with advanced features like caching and lazy loading?How can I use JPA (Java Persistence API) for object-relational mapping with advanced features like caching and lazy loading?Mar 17, 2025 pm 05:43 PM

The article discusses using JPA for object-relational mapping with advanced features like caching and lazy loading. It covers setup, entity mapping, and best practices for optimizing performance while highlighting potential pitfalls.[159 characters]

How does Java's classloading mechanism work, including different classloaders and their delegation models?How does Java's classloading mechanism work, including different classloaders and their delegation models?Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version