Accept a string from the console and count number of vowels, constants, digits, tabs and blank spaces in a string.
Write a program to accept a string from the console and count number of vowels, constants, digits, tabs and blank spaces in a string. import java.io.*; class q5vowels { public static void main(String args[])...
