在java中有没有一个if语句和这个python语句等价?

t30tvxxf  于 2023-03-11  发布在  Java
关注(0)|答案(3)|浏览(136)

我通常写python,但决定尝试学习一门新语言(Java)。我是一个完全的初学者,大约有2个小时的经验。在python中,我们可以使用“or”,这样如果一个条件满足,它就会执行代码块。例如:

if x>y or 10<12:
  print("one of these is true")

在java中是否有一个与之等价的东西?

qgzx9mmu

qgzx9mmu1#

我猜

if( x > y || 10 < 12) { 
System.out.println("one of these is true"); 
}

应该这么做。

vc6uscn9

vc6uscn92#

此解决方案将为您工作。

if (x>y || 10<12) {
 print("one of these is true");
}
gojuced7

gojuced73#

等效的if语句为

if (x > y || 10 < 12) {
    ....
}

或者,您也可以跳过它,因为10 < 12的计算结果总是true。

相关问题