Skip to content

Instantly share code, notes, and snippets.

@nbness2
Last active November 27, 2021 10:45
Show Gist options
  • Save nbness2/d3c0f4cf161e37c404bdce7303551f0e to your computer and use it in GitHub Desktop.
Save nbness2/d3c0f4cf161e37c404bdce7303551f0e to your computer and use it in GitHub Desktop.
var random = new Random();
var randomNumber = random.nextInt();
var message = "Number is {0}";
String sign;
if (randomNumber > 0) {
sign = "positive";
} else if (randomNumber < 0) {
sign = "negative";
} else {
sign = "zero";
}
System.out.println(MessageFormat.format(message, sign));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment