英文:
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>1000 && variable<3000){
//do something here
}
Hope this will help you.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论