Changes

Jump to: navigation, search

Team Excellence - oop344 20113 Code Standards

188 bytes removed, 17:13, 17 October 2011
If Statement
== If Statement ==
'''Sandip:'''
I have a proposal. How about doing it like this:
<syntaxhighlight lang="cpp">
if (condition)
{
stuff;
}
else if (condition)
{
stuff;
}
else
{
stuff;
}
</syntaxhighlight>
'''Dzmitry:'''
if (condition){
stuff;
}else if (condition){
stuff;
}else{
stuff;
}
1
edit

Navigation menu