Division Operator Example Java Program
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."Syntax
data_type variable_name = number / number;
Division Operator Example Program
class DivisionOperator{ public static void main(String[] args){ int num1,num2,result; num1=12; num2=4; System.out.println("num1=12; num2=4"); result=num1/num2; System.out.println("The result after division operation is : "+result); } }
Sample Output
Output is num1=12; num2=4 The result after division operation is : 3
Operator Programs
- Addition Operator Example Java Program
- Division And Assignment Operator Example Java Program
- Modulus And Assignment Operator Example Java Program
- Equal To And Not Equal To Operator Example Java Program
- Greater Than Operator Example Java Program
- Lesser Than Operator Example Java Program
- Increment Operator Example Java Program
- Decrement Operator Example Java Program
- Logical And Operator Example Java Program
- Logical Or Operator Example Java Program
- Instance Of Operator Example Java Program
- Subtraction Operator Example Java Program
- Ternary Operator Example Java Program
- Multiplication Operator Example Java Program
- Division Operator Example Java Program
- Modulus Operator Example Java Program
- Assignment Operator Example Java Program
- Addition And Assignment Operator Example Java Program
- Subtraction And Assignment Operator Example Java Program
- Multiplication And Assignment Operator Example Java Program
Read More Articles
- Multiple Inheritance Using Interface Example Java Program
- Single Inheritance Example Java Program
- Multilevel Inheritance Example Java Program
- Hierarchical Inheritance Example Java Program
- Find all Substrings of a given string Example Java Program
- Sum Of Three Numbers Example Java Program
- Create Matrix Example Java Program
- Twin Prime Example Java Program
- Compile Time Polymorphism Example Java Program
- Encapsulation Example Java Program