CJCoding With Joseph

Password Length Check (Input)

Read a single word password from standard input using Scanner's next() method. If the password's length is >= 8, print Strong; otherwise print Weak.

For the input abcdefgh the output is:

Strong

Expected Output:

Strong
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
abcdefgh\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.