我使用了一个简单的嵌套if语句。
要求如下。
if (Condition1) {
if (Condition2) {
print "All OK";
}
else {
print "Condition1 is true but condition2 not";
}
else {print "Condition1 not true";
}
是否可以在 Perl 中编写此代码,或者是否有另一种简短或更好的方法来满足此条件?