CJCoding With Joseph

Print Characters of a Word (for)

The variable word holds the text code. Use a for loop to print each character on its own line. The exact output is:

c
o
d
e

Use word.charAt(i) to get each character.

Expected Output:

c
o
d
e
Topics:
Loops
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.