04.08.2014, 16:28
Hi, I have a question, if I use conditions like the next code will it work properly?
I mean will it return code3 if none of the first conditions is fullfilled?
Код:
if(condition)
{
//code1
}
else if(condition)
{
//code2
}
else
{
//code3
}

