Only use "break" inside a switch statement (why?) Sentinels should be constants when possible. Only use a for loop when you know how many times it will run (for example, 10 times or n times), i.e. for definite iteration. While loops may be used for definite or indefinite. Variable and function names should start with lower case letters (why?). When naming, join words with camel notation (highTemp) or underscores (lowTemp) but not run togetherlikethis. Use of "goto" will cause programming assignments to fail (i.e. they will be graded zero). When using "if" with exclusive possibilities, always use "else" if it is possible, since it reduces the amount of testing performed.