CJCoding With Joseph

Login Attempt Lock (Input)

Read an int called attempts (the number of failed login attempts) from standard input. If attempts >= 3, print Account locked. Otherwise print Attempts remaining: <n> where <n> is 3 - attempts.

For the input 3 the output is:

Account locked

For the input 1 the output is:

Attempts remaining: 2

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 (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.