"Site1: Program.java"
import java.util.Random;
import java.util.Scanner;
public class program {
public static void main(String[] args) {
Wort1 WortNeu = new Wort1();
WortNeu.erstellen();
}
}
"Site2:Wort1.java"
import java.util.Random;
public class Wort1 {
public void erstellen () {
Random zufall = new Random ();
String[]KonVok = {"ba", "ca", "da", "ea", "fa", "ga", "ha", "ia", "ja", "ka", "la", "ma", "na", "oa", "pa", "ra", "sa", "ta", "ua", "va", "wa", "ya", "ae", "be", "ce", "de", "fe", "ge", "he", "ie", "je", "ke", "le", "me", "ne", "oe", "pe", "re", "se", "te", "ue", "ve", "we", "ye", "ai", "bi", "ci", "di", "ei", "fi", "gi", "hi", "ji", "ki", "li", "mi", "ni", "oi", "pi", "ri", "si", "ti", "ui", "vi", "wi", "yi", "ao", "bo", "co", "do", "eo", "fo", "go", "ho", "io", "jo", "ko", "lo", "mo", "no", "po", "ro", "so", "to", "uo", "vo", "wo", "yo", "au", "bu", "cu", "du", "eu", "fu", "gu", "hu", "iu", "ju", "ku", "lu", "mu", "nu", "ou", "pu", "ru", "su", "tu", "vu", "wu", "yu", "ay", "by", "cy", "dy", "ey", "fy", "gy", "hy", "iy", "jy", "ky", "ly", "my", "ny", "oy", "py", "ry", "sy", "ty", "uy", "vy", "wy", "aj", "bj", "cj", "dj", "ej", "fj", "gj", "hj", "ij", "kj", "lj", "mj", "nj", "oj", "pj", "rj", "sj", "tj", "uj", "vj", "wj", "yj"};
String[]DoppelVok = {"aa", "ee", "ii", "oo", "uu", "ae", "ai", "ao", "au", "ea", "ee", "ei", "eo", "eu", "ia", "ie", "io", "iu", "oa", "oe", "oi", "ou", "ua", "ue", "ui", "uo"};
String[]DoppelKon = {"ts", "st", "ng", "sb", "bs", "ls", "ch", "rr", "ll", "nn", "ff", "tt", "dd", "pp", "ss", "bb", "th"};
String[]Endung = {"ron", "huir", "uien", "ed", "nor", "wej", "vor", "er", "ar", "ing", "myr", "syr", "tjm","ror", "hel", "hul", "run", "cel", "fjn", "dor", "os", "es", "as", "uis", "re", "de", "ser"};
String[]Vokale = {"a", "e", "i", "o", "u"};
String[]Konsonanten = {"b", "c", "d", "f", "g", "h", "k", "l", "m", "n", "p", "q", "r", "s", "t", "v", "w", "z"};
int Chance = zufall.nextInt(10);
System.out.println(Chance);
if(Chance == 0) {
System.out.print(DoppelVok[new Random().nextInt(DoppelVok.length)]);
System.out.print(KonVok[new Random().nextInt(KonVok.length)]);
}
if(Chance == 1) {
System.out.print(KonVok[new Random().nextInt(KonVok.length)]);
System.out.print(Endung[new Random().nextInt(Endung.length)]);
}
if(Chance == 2) {
System.out.print(KonVok[new Random().nextInt(KonVok.length)]);
System.out.print(DoppelKon[new Random().nextInt(DoppelKon.length)]);
System.out.print(Endung[new Random().nextInt(Endung.length)]);
}
if(Chance == 3) {
System.out.print(Konsonanten[new Random().nextInt(Konsonanten.length)]);
System.out.print(Vokale[new Random().nextInt(Vokale.length)]);
System.out.print(KonVok[new Random().nextInt(KonVok.length)]);
System.out.print(Endung[new Random().nextInt(Endung.length)]);
}
if(Chance == 4) {
System.out.print(Vokale[new Random().nextInt(Vokale.length)]);
System.out.print(Endung[new Random().nextInt(Endung.length)]);
System.out.print(DoppelVok[new Random().nextInt(DoppelVok.length)]);
}
if(Chance == 5) {
System.out.print(Konsonanten[new Random().nextInt(Konsonanten.length)]);
System.out.print(DoppelVok[new Random().nextInt(DoppelVok.length)]);
}
if(Chance == 6) {
System.out.print(DoppelVok[new Random().nextInt(DoppelVok.length)]);
System.out.print(Konsonanten[new Random().nextInt(Konsonanten.length)]);
System.out.print(Endung[new Random().nextInt(Endung.length)]);
}
if(Chance == 7) {
System.out.print(DoppelVok[new Random().nextInt(DoppelVok.length)]);
System.out.print(Endung[new Random().nextInt(Endung.length)]);
}
if(Chance == 8) {
System.out.print(Konsonanten[new Random().nextInt(Konsonanten.length)]);
System.out.print(Vokale[new Random().nextInt(Vokale.length)]);
System.out.print(Endung[new Random().nextInt(Endung.length)]);
System.out.print(Konsonanten[new Random().nextInt(Konsonanten.length)]);
}
if(Chance == 9) {
System.out.print(DoppelVok[new Random().nextInt(DoppelVok.length)]);
System.out.print(Konsonanten[new Random().nextInt(Konsonanten.length)]);
}
}
}