18.07.2011, 21:20
I've seen many people use if once again after if, for eg:
But I thought it was like this:
What is the difference between these two, please if someone would explain.
pawn Код:
if(blah == 6)
{
//..........
}
if(blah == 7)
{
//sssssss
}
pawn Код:
if(blah == 6)
{
//..........
}
else if(blah == 7)
{
//sssssss
}