
Patrick B. answered 10/05/19
Math and computer tutor/teacher
NO.... OLD SCHOOL!!!
It has to stop somewhere....
indent 3 spaces per nested block....
USE COMMENTS TO INFORM THE READER OF WHICH BLOCK YOU ARE CLOSING!!!
if (conditionA)
{
conditionB = executeConditionA();
if (condtionB)
{
conditionC = executeConditionB();
if (coniditionC)
{
....
if (conditionY)
{
conditionZ = executeCOnditionY();
if (conditionZ)
{
....
} //z
} //y
} //D
}//C
}// B
}//A
executeThisFunctionInAnyCase();