No title Revision 393932326635 (Fri Oct 02 2009 at 14:14) - Diff Link to this snippet: https://friendpaste.com/5qxNTpJqbbrRAjA0rqbxpu Embed: manni perldoc borland colorful default murphy trac fruity autumn bw emacs pastie friendly Show line numbers Wrap lines 12345678910111213141516171819202122package AffCh;import java.util.*;import javax.sound.midi.SysexMessage;public class Data { // mögliche multiplikatieve inversen public final int[] inverse = { 1, 9, 21, 15, 3, 19, 7, 23, 11, 5, 17, 25,27 }; // mögliche zahlen die addiert werden können, von 0 bis 26 public final int[] addition = new int[27]; // Der Modulo-Wert bzw die länge des alphabetes (27 zeichen) public final int modulo = 27; public Data() { for (int i = 0; i < addition.length; i++) { addition[i] = i; } }}