Unformatted text preview:

Slide 1Slide 2Slide 3Slide 4Slide 5Slide 6COSC 181 – Foundations of Computer ProgrammingClass 10Announcement1st TestWed. Sept 17thComprehensive through the end of this weekClosed Note/Closed BookRead and Interpret Code“trace” codeWrite Code SnippetsSmall programs or parts of programsSyntax matters!Multiple-ChoiceTry ItWrite a program that asks the user for a character. Use if-else control statements to check if the character is an a,e,i,o, or u.If the character is an aPrint out, “You typed in an a”Likewise if it is an e, i, o, or uIf the character was not a vowel print out“You did not enter a vowel.”while Repetition StatementRepetition statementAction repeated while some condition remains truePseudocodeWhile there are more items on my shopping list Purchase next item and cross it off my list •while loop repeats until condition becomes falseExample•int product = 3;while ( product <= 100 ) product = 3 * product;•What will product equal when the loop stops executing?What does this example do?Example•int product = 3;while ( product <= 100 ) product = 3 - product;Try ItUse a single while statement to write the code for our last homework.Read in 20 charactersTell me how many a’s, e’s, i’s, o’s, and u’s there


View Full Document

UVa-Wise COSC 181 - Foundations of Computer Programming

Download Foundations of Computer Programming
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Foundations of Computer Programming and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Foundations of Computer Programming 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?