Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: how can i do that?

  1. #1
    Junior Member
    Join Date
    Oct 2013
    Posts
    4
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default how can i do that?

    Prompt the user to enter an integer from the keyboard and then display each digit of that number in English but in reverse order. Each digit of the integer is displayed in English format. (Use loops and switch).

    he the output .

    Enter an integer : 67231
    The English format of 67231 in reverse order is: one three two seven six



    thankyou

  2. #2
    Member
    Join Date
    May 2013
    Posts
    165
    Thanks
    58
    Thanked 1 Time in 1 Post

    Default Re: how can i do that?

    Could do scanner, then store the input, then reverse it and then print out the reverse.

  3. The Following User Says Thank You to keepStriving For This Useful Post:

    sookazamzam (November 3rd, 2013)