Programming

profileAdejoke
2.9PerformanceAssessment.docx

2.9 Performance AssessmentUsing While() Loops

In this assessment, you will create a program that allows the user to enter a passcode, if the passcode is correct a message will be displayed that they entered the correct passcode, if the passcode is incorrect the user will be asked to try again.  The user will get three attempts at getting the passcode correct. You will design a flowchart and develop the C code for a program.

Instructions

Follow these instructions to complete your assignment:

1. Write a flowchart and C code for a program that does the following:

· Assign the passcode 11862 to a variable

· Ask a user to enter a passcode

· Use a while loop to allow the user three tries

· Use if...else statements to check to see if the user entry matches the password (Hint:  Use the equal operator ==)

· If the user enters the password correctly use a  break  or assign the looping condition a value so the loop stops

· Display a message if the user enters the passcode correctly.  Display 'Try Again' if the user enters the passcode incorrectly

     2. Submit one Word document which contains:

·

·  A screenshot of your code

· A screenshot of your output including the Title Bar of the console window.

     3. Submit the “.c” code file, which should include a comment line with your name and the date.   You should NOT save your file with a .cpp file extension.

     4. Submit the Flowgorithm (.fprg) file.

Review the output below to check your work!

Output

Text  Description automatically generated

image1.png