Home > Java > Javagetting Started > body text

The difference between '/' and '%' in java

王林
Release: 2019-11-21 10:10:26
Original
8591 people have browsed it

The difference between '/' and '%' in java

Difference:

% is the modulo operator, / is the division operator. % is the remainder operation, and / is the ordinary division sign.

Example:

System.out.println(3/5)  = 0;
System.out.println(2/5)  = 0;
System.out.println(4/5)  = 0;
System.out.println(6/5)  = 1;
System.out.println(7/5)  = 1;
System.out.println(8/5)  = 1;
System.out.println(11/5)  = 2;
System.out.println(12/5)  = 2;
System.out.println(13/5)  = 2;
Copy after login

The result is equal to the obtained integer (the integer of the quotient)

System.out.println(17%5) = 2;
System.out.println(16%5) = 1;
System.out.println(13%5) = 3;
System.out.println(8%5) = 3;
System.out.println(7%5) = 2;
Copy after login

The result is equal to the remainder (how much is left)

System.out.println(2%5) = 2;
System.out.println(7%8) = 7;
System.out.println(6%8) = 6;
Copy after login

Take the remainder (take Modulo) has a rule: the left side is smaller than the right side, the result is the left side, the left side is larger than the right side, look at the remainder.

Recommended tutorial: java introductory tutorial

The above is the detailed content of The difference between '/' and '%' in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template