Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
154 views
in Technique[技术] by (71.8m points)

java - Java Mod的语法是什么(What's the syntax for mod in java)

As an example in pseudocode:

(以伪代码为例:)

if ((a mod 2) == 0)
{
    isEven = true;
}
else
{
    isEven = false;
}
  ask by Bob translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

For non-negative integers, you can use the remainder operator % .

(对于非负整数,可以使用余数运算符% 。)

For your exact example:

(对于您的确切示例:)

if ((a % 2) == 0)
{
    isEven = true;
}
else
{
    isEven = false;
}

This can be simplified to a one-liner:

(可以简化为单线:)

isEven = (a % 2) == 0;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...