Hello I'm having major issues, please help me with this code;
(Generating random characters) Use the methods in RandomCharacter to print one hundred uppercase letters and then one hundred single digits, and print ten per line.
Use these methods:
public static char getRandomUppercaseLetter(){
return getRandomCharacter('A', 'Z');
}
public static char getRandomDigitCharacter(){
return getRandomCharacter('0', '9');
}
I just don't know how to work it into these methods. Try and keep it simple, i'm still new to coding.
Thanks!