I have to read the string \"hello world\" and output each letter\'s frequency using only for loops. The instructor hinted that I\'d need to use two loops and ga
\"hello world\"
int count; int value; for (int i=65; i<91; i++) { count=0; for (int j=0; j0) System.out.println((char)i+" -- "+count); }