tempscale.cpp
int to double conversion
if Statement
if (logical expression)
{
statement list
}
if/else Statement
if (logical expression)
{
statement list
}
else
{
statement list
}
| == | equal to |
| > | greater than |
| < | less than |
| != | not equal to |
| >= | greater than or equal to |
| <= | less than or equal to |
if/else Examples:
| || | Or |
| && | And |
| ! | Not |
exhaust4.cpp
| ! | NOT |
| *, /, % | mult, div, mod |
| +, - | add, subt |
| <<, >> | insert, extract |
| <, <=, >, >= | LT, LE, GT, GE |
| ==, != | EQ, NE |
| && | AND |
| || | OR |
| =, +=, -=, *=, /=, %= | assignment |