filmov
tv
#2.5 Java Tutorial | Arithmetic Operators in Java

Показать описание
We have different types of operators in Java:
1) Arithmetic :- ( +, -, *, / , %)
-Division operator will always give a quotient not the decimal part when the data type is int.
-You need to typecast it with the double to get the proper quotient with the decimal part.
-% will give the remainder.
Shorthand operators:- n+=1 ( n=n+1)
Increment Operators:
Pre Increment: ++n (first add and than save)
Post Increment: n++ (first save and than add)
Decrement Operators:
Pre decrement: --n (first subtract and than save)
Post decrement: n-- (first save and than subtract)
2) Bitwise
3) Relational
4) Logical
Comments:
The statements are not executed by the compiler and interpreter but are used to provide information or explanation about the variable, method, class, or any statement.
- Single-line comment (//)
- Multi-line comment( /*..*/)
In this video we will see :
- How to use operators?
- Types of Operators
- Examples of Arithmetic Operators
- Increment and Decrement Operators
- How to write comments?
More Learning :
Donation:
PayPal Id : navinreddy20
Patreon : navinreddy20
1) Arithmetic :- ( +, -, *, / , %)
-Division operator will always give a quotient not the decimal part when the data type is int.
-You need to typecast it with the double to get the proper quotient with the decimal part.
-% will give the remainder.
Shorthand operators:- n+=1 ( n=n+1)
Increment Operators:
Pre Increment: ++n (first add and than save)
Post Increment: n++ (first save and than add)
Decrement Operators:
Pre decrement: --n (first subtract and than save)
Post decrement: n-- (first save and than subtract)
2) Bitwise
3) Relational
4) Logical
Comments:
The statements are not executed by the compiler and interpreter but are used to provide information or explanation about the variable, method, class, or any statement.
- Single-line comment (//)
- Multi-line comment( /*..*/)
In this video we will see :
- How to use operators?
- Types of Operators
- Examples of Arithmetic Operators
- Increment and Decrement Operators
- How to write comments?
More Learning :
Donation:
PayPal Id : navinreddy20
Patreon : navinreddy20
Комментарии