In Java, "%" means remainder. It is a binary arithmetic operator that can perform division operations and obtain the remainder. The syntax is "operand 1 % operand 2". The operand of the remainder operator "%" is usually a positive integer or a negative number or even a floating point number. If a negative number participates in this operation, the result depends on whether the previous number is positive or negative.
The operating environment of this tutorial: windows7 system, java8 version, DELL G3 computer.
% in Java means remainder, which is an arithmetic operator that can implement remainder operations, perform division operations and obtain the remainder.
The remainder operator is %, which is a binary operator. Its operand is usually a positive integer or a negative number or even a floating point number. If a negative number participates in this operation, the sign of the result depends on the previous one. Whether the number is positive or negative.
For integers, Java’s remainder operation rules are as follows
a%b=a-(a/b)*b 5%3=5-(5/3)*3=2 5%-3=5-(5/-3)*-3=2 -5%3=-5-(-5/3)*3=-2 -5%-3=-5-(-5/-3)*-3=-2
If there are floating point numbers in the operand, the rule used is
a%b=a- (b*q)
, whereq=int(a/b)
5.2%3.1=5.2-1*3.1=2.1 5.2%-3.1=5.2-(-1)*(-3.1)=2.1 -5.2%3.1=-5.1-(-1)*3.1=-2.1 -5.2%-3.1=-5.1-(-1)*(-3.1)=-2.1
Extended knowledge:
Arithmetic in Java Operators are mainly used to organize arithmetic operations on numerical data. They can be divided into unary operators and binary operators according to the different operands involved in the operation.
Unary operators
There are three arithmetic unary operations, namely -, and --. See Table 1 for specific instructions.
Operator | Name | Description | Example |
---|---|---|---|
- | Negation symbol | Negation operation | b=-a |
##Self-increment | Get the value first and then add one, or add one first and then get the value | a or a | |
decrement by one | First take the value and then subtract one, or first subtract one and then take the value | a-- or--a |
int a = 12; System.out.println(-a); int b = a++; System.out.println(b); b = ++a; System.out.println(b);
The second line of the above code is -a, which inverts the a variable, and the result output is -12. The fourth line of code is to first assign a to the b variable and then add one, that is, assign the value first and then , so the output result is 12. The 6th line of code adds one to a, and then assigns a to the b variable, that is, assigning values one after another, so the output result is 14.
The output result is as shown below:
Arithmetic operators in Java language The function of is to perform arithmetic operations. In addition to the frequently used addition ( ), subtraction (-), multiplication (*) and division (\), there is also the modulo operation (%). Addition ( ), subtraction (-), multiplication (*), and division (\) have the same meaning as the mathematical operations we usually come into contact with. See Table 2 for specific instructions.
Table 2 Binary arithmetic operationsName | Description | Example | |
---|---|---|---|
Add | Find the sum of a plus b. It can also be used for String type to perform string concatenation operations | a b | |
minus | Find the difference of a minus b | a - b | |
Multiply | Find the product of a times b | a * b | |
Division | Find the quotient of a divided by b | a / b | |
Remainder
| Find the remainder when a is divided by b a % b |
The above is the detailed content of What does % mean in Java. For more information, please follow other related articles on the PHP Chinese website!

在c语言中,没有开根号运算符,开根号使用的是内置函数“sqrt()”,使用语法“sqrt(数值x)”;例如“sqrt(4)”,就是对4进行平方根运算,结果为2。sqrt()是c语言内置的开根号运算函数,其运算结果是函数变量的算术平方根;该函数既不能运算负数值,也不能输出虚数结果。

在Java中,“%”是取余的意思,是一个二元算术运算符,可进行除法运算并获取余数,语法“操作数1 % 操作数2”。取余运算符“%”的操作数通常是正整数也可以是负数甚至是浮点数,如果负数参与此运算,则结果的正负取决于前面一个数是正数还是负数。

对于Golang开发者来说,“invaliduseof…operator”是一个常见的报错。这个报错通常会在使用变长参数函数时出现。它在编译时就会被检测出来,并指出哪些部分有问题。这篇文章将介绍如何解决这个报错。一、什么是变长参数函数变长参数函数也被称为可变参数函数,是Golang语言中的一种函数类型。使用变长参数函数可以像如下方式定义多个

很多小伙伴打开任务管理器cpu时候,发现磁盘显示百分之100,这是怎么一回事呢?因为当WindowsDefender在进行扫描时,如果再进行其他的工作,磁盘占用率就达到了100%,或者还有其他功能的占用,具体的介绍及解决方法下面一起来看看吧。任务管理器磁盘100%是什么意思:答:当前磁盘资源被大量的占用了。磁盘占用的最大问题其实是windows搜索导致的,这个功能需要不断地简历因此会导致占用超高。任务管理器磁盘100%怎么办?1、首先右击任务栏,打开“任务管理器”。2、然后看看那个占用率高,右击

在php中,“==”符号是一个比较运算符,可以比较两个操作数是否相等,语法“操作数1 == 操作数2”。“==”运算符会比较、并测试左边的变量(表达式或常量)是否与右边的变量(表达式或常量)具有相同的值;它只比较变量的值,而不是数据类型。如果两个值相同,则返回true值;如果两个值不相同,则返回false值。

在php中,可以使用“%”和“==”运算符来判断两个数能否整除;只需要使用“%”运算符将两个数相除获取余数,再使用“==”运算符判断获取的余数是否为0即可,语法“数1 % 数2 == 0”,如果为0则能整除,如果不为0则不能整除。

在Go语言中使用%运算符可进行取余操作,其语法为:result:=dividend%divisor。此操作返回两个数字相除的余数,需要注意:当除数为0时会引发错误,且结果符号与除数相同。

CPU使用率100怎么办?是因为什么?近年来,随着科技的快速发展,计算机技术成为了现代社会的重要组成部分。无论是个人使用还是企业办公,计算机都扮演着重要的角色。然而,在使用计算机的过程中,我们有时候会遇到CPU使用率飙升到100%的情况,这给我们的工作和学习带来了很大的困扰。那么,CPU使用率100%是因为什么呢?我们又应该如何处理呢?首先,我们来看一下引起

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

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.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
