CJCoding With Joseph

Login Lockout

Read the number of failed login attempts (an integer) with scanf. If it is 3 or more, print exactly:

Account locked

Otherwise print exactly:

Try again

No trailing newline. For input 3 the output is Account locked; for input 1 the output is Try again.

Expected Output:

Account locked
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
3\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.