import java.util.Scanner; public class LetterCountAthroughM { public static int countAthroughM (String word) { int count = 0; // Count the number of letters in word that are between 'a' and 'm' return count; } public static void main (String args[]) { Scanner scanner = new Scanner(System.in); System.out.println("Input Your Sentence"); String sentence = scanner.nextLine(); String delimiter = "[? ,!.;]+"; String [] words = sentence.split(delimiter); for (int i = 0; i