Question: Write a program that displays 5 random uppercase letters using the Math.random ( ) method for each letter. Display the letters on the same line

Write a program that displays
5
random uppercase letters using the Math.random
(
)
method for each letter. Display the letters on the same line with a space between them. So far, I have this and need help with displaying
5
letters:
int randomNumbers
=
(
int
)
(
Math
.
random
(
)
*
2
7
)
;
String alphabet
=
"abcdefghijklmnopqrstuvwxyz";
System.out.println
(
Character
.
toUpperCase
(
alphabet
.
charAt
(
randomNumber
)
)
)
;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!