Java Program Phrase-O-Matic
Java Program Phrase-O-Matic
String wordlist2[] = {"empowered","sticky","value-added","oriented","cen tric","distributed","clustered","branded","outside-the-box","positioned","networ ked","focused","leveraged","aligned","targeted","shared","cooperative","accelera ted"}; String wordlist3[]={"process","tipping-point","solution","architecture", "core competency","strategy","mindshare","portal","space","vision","paradigm","m ission"}; int onelength=wordlist1.length; int twolength=wordlist2.length; int threelength=wordlist3.length; int ran1 = (int) (Math.random()*onelength); int ran2 = (int) (Math.random()*twolength); int ran3 = (int) (Math.random()*threelength); String phrase= wordlist1[ran1] + " " + wordlist2[ran2] +" " +wordlist3[r an3]; System.out.println("What we need is a " + phrase); } }