-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPhraseOMatic.java
More file actions
17 lines (15 loc) · 1.08 KB
/
PhraseOMatic.java
File metadata and controls
17 lines (15 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class PhraseOMatic
{
public static void main(String[] args)
{
String[] wordListOne = {"24/7", "multi-tier", "30,000 foot", "win-win", "front-end", "web-based", "pervasive", "smart", "six-sigma", "critical-path", "dynamic"};
String[] wordListTwo = {"empowered", "sitcky", "value-added", " oriented", "centric", "distributed", "clusterd", "branded", "outside-the-box", "positioned", "networked", "focused", "leveraged", "aligned", "targeted", "shared", "cooperative", "accelerated"};
String[] wordListThree = {"process", "tipping-point", "solution", "architecture", "core competency",
"strategy", "mindshare", "portal", "space", "vision", "paradigm", "mission"};
int rand1 = (int) (Math.random() * wordListOne.length);
int rand2 = (int) (Math.random() * wordListTwo.length);
int rand3 = (int) (Math.random() * wordListThree.length);
String phrase = wordListOne[rand1] + " " + wordListTwo[rand2] + " " + wordListThree[rand3];
System.out.println("What we need is a " + phrase);
}
}