class Isikukood{ private String kood; public Isikukood(String uusKood){ if(uusKood.length()!=11){ throw new RuntimeException("Vigane pikkus"); } kood=uusKood; if(!kontrolliKood()){ throw new RuntimeException("Vigane kontrollsumma"); } } public boolean kontrolliKood(){ int[] kordajad={1, 2, 3, 4, 5, 6, 7, 8, 9, 1}; int ksumma=0; for(int i=0; i