Lots of different dice-based games require rolling dice, and sometimes more than one. Write a program MultipleSixes
that has the user enter how many dice they’d like to roll. The program will then print out the results of rolling a six-sided die that many times.
Write a static method roll(n)
that will perform the rolls and print out the results, then call that method from the main()
program.