Ask your own question, for FREE!
Computer Science 16 Online
OpenStudy (pottersheep):

If x = 678, what's a code that I can make that will seperate 678 into 6 7 8? Like, seperate numbers? Thanks

OpenStudy (pottersheep):

PLEASE HELP ME IM IN CLASS

OpenStudy (pottersheep):

in java

OpenStudy (anonymous):

Maybe you could initialize x as a character array then call the specific digit (element) you want. x[0] = 6, x[1] = 7, x[2] = 8

OpenStudy (husseinjahan`):

I think You can change x to a string and then use x.toCharArray(); to separate the characters and finally convert separated characters to integer...

OpenStudy (anonymous):

678 % 10 = last digit = 8, then you can divide 678 by 10 and find the remainder for the second digit, so on.

OpenStudy (anonymous):

You can also use variable = (String) x; and then use the String.charAt, but I agree with husseinjahan, the array is the easiest way to do it. Can use a loop to convert the char[] into an int[] or double[].

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!