Rotate your phone or change to desktop for better experience

Rotate your phone or change to desktop for better experience

if and else if statments

if (condtion)
{
    statment;
}

and else if statement

if (condtion)
{
statment;
}
else if (condition)
{
statement;
}
else
{
statement;
}

Post a Comment

0 Comments