In this Problem, you'll learn about different types of operators in Java, their syntax and how to use them with the help of examples.
Operators are symbols that perform operations on variables and values. For example, + is an operator used for addition, while * is also an operator used for multiplication.
Operators in Java can be classified into 6 types:
References: Click Here.
We will discuss about arithmetic operators and rest you can study from the references mentioned above.
Arithmetic Operators:
Arithmetic operators are used to perform arithmetic operations on variables and data. For example,
a + b;
Here, the + operator is used to add two variables a and b. Similarly, there are various other arithmetic operators in Java.
Operator Operation + Addition - Subtraction * Multiplication / Division % Modulo Operation (Remainder after division)
Task:
You are given two integers as input a and b
You need to perform several tasks in the editor below:
NOTE: You don't need to print anything.