/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package exercises; /** * * @author Student */ public class charAtWord { public static void main(String[] args){ char c; int vowel =0; int num =0; int con =0; int space =0; char[] spaceStr = {' '}; char[] numStr = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'}; char[] vowelStr={'a', 'A', 'e', 'E', 'i', 'I', 'o', 'O', 'u', 'U'}; char[] conStr={'b','B','c','C','d','D','f','F','g','G','h','H','j','J', 'k','K','l','L','m','M','n','N','p','P','q','Q','r','R','s','S','t', 'T','v','V','w','W','x','X','y','Y','z','Z'}; String copyFromMe="The quick brown fox jumps over the lazy dog 123"; String ltr = ""; String display = ""; for (int i =0; i