I'd use the following (consensusthe consensus here):
if (condition) {
any_number_of_statements;
}
Also possible:
if(condition) single_compact_statement;
Not so good, especially in C/C++-like languages:
if(condition)
single_compact_statement;
(noNo choice here in PythonPython ;-)
In PerlPerl, you'd use:
$C = $A**3 if $A != $B ;$B;
or
$C = $A**3 unless $A == $B ;$B;
(thisThis is not pseudocode ;-)
Regards
rbo