Program: import java.util.Scanner; public class practical8 { public static void main(String[] args) { System.out.println("Enter the word 'quit' to end this program."); String str; int x = 0, A = 0, E = 0, I = 0, O = 0, U = 0; char ch; Scanner in = new Scanner(System.in); while (x < 1) { str = in.next(); if (str.equals("quit")) { x++; ...