CJCoding With Joseph

Greeting Method

Complete the static method greet so it PRINTS a greeting in the form 'Hello, [name]!' on its own line. The method returns nothing (void) — it prints directly.

For greet("Mia") the program prints 'Hello, Mia!'.

Expected Output:

Hello, Mia!
Hello, Sam!
Topics:
Methods
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.