multiple if condition support

+1 vote
asked Sep 19, 2017 in Bug by nikhil (520 points)
edited Feb 1, 2018 by nikhil
Currently I can see support for multiple if-else and parallel activities.

Is there anything for muiple if condition support

if(a>b)
{
      if(b > c)
      {
            if(c>d)
            {
                  x = 100;
            }
     }

}

as per above example if(a>b) && if(b>c) && if(c>d) only then x = 100. Which is a muliple if condition executing parallely. Can I show these if conditions parallel to each other and then give a single output to "x = 100"

Thanks,

Nikhil.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:

[Antispam2 Feature: please please wait 1 or 2 minutes (this message will disappear) before pressing the button otherwise it will fail](--------)
To avoid this verification in future, please log in or register.
...