I have to create 3 arrays and prompt the user for a number that is greater than 100 that will serve as the size for all 3 arrays. Then I have to generate that amount of random numbers to fill these arrays ranging from 1-99. So far I have this:
public static void main(String [] args){
Scanner SC = new Scanner(System.in);
System.out.println("Enter size of array:");
int size = SC.newInt();
I am fairly new to programming, I'm really just trying to learn and I cant seem to figure this out.