Endlich etwas spannendes. Wir basteln uns ein Programm, mit dem man Manager glücklich machen kann. Wir können jetzt so wunderbare Begriffe produzieren wie:
six-sigma cooperative strategy
web based networked paradigm
Und produzieren kann man das ganze mit folgendem Java Script:
public class PhraseOMatic {
public static void main (String[] args) {
// make three sets of words to choose from
String[] wordListOne = {"24/7","multi-Tier","30,000 foot"
,"B-to-B","win-win","front-end", "web-based",
"pervasive", "smart", "six-sigma","critical-path", "dynamic"};
String[] wordListTwo = {"empowered", "sticky", "valued-added", "oriented", "centric", "distributed", "clustered", "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"};
// find out how many words are in each list
int oneLength = wordListOne.length;
int twoLength = wordListTwo.length;
int threeLength = wordListThree.length;
// generate three random numbers, to pull random words from each list
int rand1 = (int) (Math.random() * oneLength);
int rand2 = (int) (Math.random() * twoLength);
int rand3 = (int) (Math.random() * threeLength);
// now build a phrase
String phrase = wordListOne[rand1] + " " + wordListTwo[rand2] + " " + wordListThree[rand3];
// now print it
System.out.println("What we need is a " + phrase);
}
Viel Spass damit und nicht zu wild beim Ausprobieren. Das Beispiel wurde aus dem Buch Head first Java entnommen.