2012-10-30T09:17:07-04:00
how can you strip each digit from a randomly generated number so that it will be displayed as such:
number digits
4028 4 0 2 8
1
2012-10-30T11:56:04-0400
import java.util.Random; import java.util.Scanner; public class Test { privatestatic Random random = new Random(); staticint generateRandom(int n) { returnMath.abs(random.nextInt()) % n; } publicstatic void main(String[] args) { intnum = generateRandom(5000); chardigits[] = String.valueOf(num).toCharArray(); System.out.println("number:" + num); System.out.println("digits:"); for(int i = 0; i < digits.length; i++) { System.out.print(digits[i]+ " "); } } }
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS !
Learn more about our help with Assignments:
Java JSP JSF
Comments
You're welcome. We are glad to be helpful. If you really liked our service please press like-button beside answer field. Thank you!
Thank you for the help