Use the methods in RandomCharacter in Listing 6.10 to print 100 uppercase letters and then 100 single

Question:

Use the methods in RandomCharacter in Listing 6.10 to print 100 uppercase letters and then 100 single digits, printing ten per line.

LISTING 6. 10 RandomCharacter.java 1 public class RandomCharacter { /** Generate a random character between ch1 and ch2 */ public static char getRandomCharacter (char ch1, char ch2) { return (char) (ch1 + Math.random () * (ch2 - ch1 + 1)); } 2 3 4 5 /** Generate a random lowercase

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: