CJCoding With Joseph

Multiple Values in Printf

Use a single System.out.printf with two placeholders to combine a name and a score. Use %s for the name Amy and %d for the number 90, ending with %n:

Amy scored 90

The arguments are supplied in order after the format string.

Expected Output:

Amy scored 90
Topics:
Printing
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.