public class Cvicenie {
public static boolean jeVacsie(int a, int b) {
if (a == 0) {
return false;
}
if (b == 0) {
return true;
}
return jeVacsie(a - 1, b - 1);
}
public static int sucet(int a, int b) {
if (a == 0)
return b;
a--;
b++;
return sucet(a, b);
}
public static int pocetVyskytov(char z, String s) {
if (s.length() == 0) {
return 0;
}
if (s.charAt(0) == z) {
return 1 + pocetVyskytov(z, s.substring(1));
} else {
return pocetVyskytov(z, s.substring(1));
}
}
public static boolean usporiadane(int[] p, int odIndexu) {
if (odIndexu >= p.length - 1) {
return true;
}
return (p[odIndexu] <= p[odIndexu + 1])
&& (usporiadane(p, odIndexu + 1));
}
public static void main(String[] args) {
// System.out.println(Cvicenie.jeVacsie(10, 1));
System.out.println(Cvicenie.sucet(0, 3));
int[] p = {4, 6, 18, 9, 10};
System.out.println(Cvicenie.usporiadane(p, 0));
}
}