0
Aren't there if / else if / else conditions in C++?
4 Respostas
+ 3
if ()
{
//code
}
else if ()
{
//code
}
else
{
//code
}
0
This is missing in the lesson! Thanks.
0
@SouthBay No problem :) Yeah it's a bit of a downer that some basic parts of the language are missed out. Although I'd think that's likely due to how short the course and how quickly you could speed through it.
- 1
There are all of them.