Last active
December 21, 2015 12:20
-
-
Save AnnaBoro/caa6ed526816cf09bfe6 to your computer and use it in GitHub Desktop.
1.5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class GreetingService { | |
public static void main(String[] args) { | |
if (args.length > 0) { | |
System.out.println("Hello " + args[0]); | |
} | |
else { | |
System.out.println("Print 'java GreetingService ' and enter name "); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Могут возникнуть вопросы по правилу ввода. Знак + нужно или нет.