[JAVA] Sesli Harfleri Bulma
public static int sesliSay(String str) { String sesli = “aeıioöuü”; if (str.equals(“”)) { return 0; } else if (sesli.indexOf(str.charAt(0)) > -1) { return 1 + sesliSay(str.substring(1)); } else { return…
Read more »public static int sesliSay(String str) { String sesli = “aeıioöuü”; if (str.equals(“”)) { return 0; } else if (sesli.indexOf(str.charAt(0)) > -1) { return 1 + sesliSay(str.substring(1)); } else { return…
Read more »