Open main menu
CDOT Wiki
β
Search
Changes
← Older edit
Newer edit →
Team Excellence - oop344 20113 Code Standards
188 bytes removed
,
16: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;
}
Smpatel
1
edit