0
What is the difference between if else and else if? In c++
What is the difference between if else and else if? in c++
1 Réponse
+ 7
if(){}
else if(){}
else{}
is just the same as
if(){}
else{
if(){}
else{}
}
What is the difference between if else and else if? in c++