CJCoding With Joseph

Percent Sign in Printf

Use System.out.printf to print a score with a literal percent sign. Inside a format string, %% produces one %. Print exactly (with a trailing newline via %n):

Score: 95%

Use %d for the number 95 and %% for the percent sign.

Expected Output:

Score: 95%
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.