如何检查一个变量是否在两个值之间?

huangapple go评论81阅读模式
英文:

How to check if a variable is between two values?

问题

我在寻找一种比较两个条件之间数据值的方法 - 在这种情况下是大于和小于。

示例:

int variable = 2500;

3000 < variable > 1000
英文:

I am having trouble finding a way to compare a data value between two conditions - in this case greater and less than.

Example:

int variable = 2500;

3000 < variable > 1000

答案1

得分: 3

你可以尝试使用 if 语句来实现这个

if(variable > 1000 && variable < 3000){
  //在这里执行某些操作
}

希望这能帮到你。

英文:

You could try using an if statement for this

if(variable&gt;1000 &amp;&amp; variable&lt;3000){
  //do something here 
}

Hope this will help you.

huangapple
  • 本文由 发表于 2020年9月23日 09:10:31
  • 转载请务必保留本文链接:https://go.coder-hub.com/64019621.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定