19.1k views
1 vote
How can I use if else if I have more than two conditions to put in my program​

User Skuta
by
5.4k points

1 Answer

2 votes

Answer:

If(condition)

Statement;

Else if(condition)

statement ;

Else if(condition)

Statement ;

Else

Statement;

Step-by-step explanation:

User Tony Wall
by
6.7k points