โ Back to Printing
Question 5
Integer Printf
Integer Printf
Create an integer variable with the value 45, and use System.out.printf to display it in the sentence:
My int is: 45
(followed by a newline character)
**Important:** The output MUST end with a newline character. Use %n in printf or \n:
- System.out.printf("My int is: %d%n", number);
- OR System.out.printf("My int is: %d\n", number);Expected Output:
My int is: 45
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.