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: Coursework help!

  1. #1
    Junior Member
    Join Date
    Dec 2011
    Posts
    1
    My Mood
    Stressed
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Post Coursework help!

    Please if anyone could help be greatly appreciated!

    Brief
    Read in a word and display if the letters are in ascending order or not in ascending order. Ignore letter case in your comparison.

    Example input data Commentary
    almost Line 1
    effort Line 2
    end Line 3
    knotty
    known
    END Terminator

    Expected output

    Almost letters in ascending order
    Effort letters in ascending order
    End letters not in ascending order
    Knotty letters in ascending order
    Known letters not in ascending order

    Remember to submit the whole application which must have the class name Main.
    Remember any line printed that contains a # will not be considered as part of your answer.
    This is so that you can write out a meaningful prompt for any data (containing a # character) and this line of text will be ignored in the comparison of your answer.
    If the String variable name holds the character string END then name.equals("END") will return true.


  2. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: Coursework help!

    I recommend reading the following to get the most out of these forums:
    http://www.javaprogrammingforums.com...-get-help.html
    http://www.javaprogrammingforums.com...e-posting.html

Similar Threads

  1. Java programmer for coursework help
    By dcshoecousa in forum Paid Java Projects
    Replies: 3
    Last Post: January 6th, 2012, 09:35 AM