我通常编写python代码,但决定尝试学习一门新语言(Java)。我是一个完全的初学者,大约2小时的经验。在python中,我们可以使用"或"因此,如果满足一个条件,它执行代码块。如:
if x>y or 10<12:
print("one of these is true")
在Java中是否有等价的
I guess
if( x > y || 10 < 12) {
System.out.println("one of these is true");
}
应该做这件事。
这个解决方案对你有用。
if (x>y || 10<12) {
print("one of these is true");
}
等价的if语句为
if (x > y || 10 < 12) {
....
}
或者你可以跳过它,因为10 < 12
总是求值为true。