Levels Tought:
University
Teaching Since: | Apr 2017 |
Last Sign in: | 371 Weeks Ago, 3 Days Ago |
Questions Answered: | 9562 |
Tutorials Posted: | 9559 |
bachelor in business administration
Polytechnic State University Sanluis
Jan-2006 - Nov-2010
CPA
Polytechnic State University
Jan-2012 - Nov-2016
Professor
Harvard Square Academy (HS2)
Mar-2012 - Present
Write a complete program using two arrays, upper and lower to keep the upper
and lower alphabet respectively.
Ask the user to enter string example:
This is a test from Jupiter. Soon you will see who is from Jupiter!!! May be Dr. D.
Your program should parse the string and keep track of number of alphabet. Both arrays are indexed from 0 to 25. The logical way to do this is to use upper[0] to
Count the number of A????1AA????1, and upper[1] to count number of A????1BA????1 and so on. Likewise
for the lower array.
Output should look like:
A: 0Â Â Â Â Â Â Â Â Â Â Â a:2
B: 0 Â Â Â Â Â Â Â Â Â Â Â Â b:0
A????1.
-----------