public class phraseomatic {
public static void main (String[] args) {
String[] wordlistone = {“24/7”, “várias camadas”, “30.000 pés”, “B-to-B”, “todos ganham”, “front-end”, “baseado na Web”, “difundido”, “inteligente”, “seis sigma”, “caminho crítico”, “dinamico”};
String[] wordlisttwo = {“habilitado”, “adesivo”, “valor agregado”, “orientado”, “central”, “distribuido”, “agrupado”, “solidificado”, “independente da maquina”, “posicionado”, “em rede”, “dedicado”, “alavancado”, “alinhado”, “destinado”, “compartilhado”, “cooperativo”, “acelerado”};
String[] wordllistthree = {“processo”, “ponto maximo”, “solução”, “arquitetura”, “habilitação no núcleo”, “estratégia”, “mindshare”, “portal”, “espaço”, “visão”, “paradigma”, “missão”};
int oneLenght = wordlistone.length;
int twoLenght = wordlisttwo.length;
int threeLenght = wordlistthree.length;
int rand1 = (int) (Math.random() * oneLength) ;
int rand2 = (int) (Math.random() * twoLength) ;
int rand3 = (int) (Math.random() * threeLength) ;
String phrase = wordlistone[rand1] + " " + wordlisttwo[rand2] + " " + wordlistthree[rand3] ;
System.out.println ("Precisamos de "+ phrase) ;
}
}
Na hora de compilar ele dá um erro de “cannot find the symbol”. Quem puder ajudar vlw