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 9 of 9

Thread: java

  1. #1
    Junior Member
    Join Date
    Dec 2013
    Location
    hyderabad
    Posts
    5
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Post java

    program
    write a program which accepts two numbers as command line arguments and prints the least number of the two. If the input is not a number print "Error" .

    how to print error ?


  2. #2
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: java

    System.out.println( "error" );

  3. #3
    Senior Member PhHein's Avatar
    Join Date
    Mar 2013
    Location
    Germany
    Posts
    609
    My Mood
    Sleepy
    Thanks
    10
    Thanked 93 Times in 86 Posts

    Default Re: java

    System.err.println( "error" );

  4. #4
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: java

    Even prettier.

  5. #5
    Junior Member
    Join Date
    Dec 2013
    Location
    hyderabad
    Posts
    5
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Re: java

    what is the condition bro

  6. #6
    Senior Member PhHein's Avatar
    Join Date
    Mar 2013
    Location
    Germany
    Posts
    609
    My Mood
    Sleepy
    Thanks
    10
    Thanked 93 Times in 86 Posts

    Default Re: java

    The input is not a number.

  7. #7
    Junior Member
    Join Date
    Dec 2013
    Location
    hyderabad
    Posts
    5
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Re: java

    ya if the input is not a number print "Error"

    what is the condition for input is a char or something @phHein

  8. #8
    Senior Member PhHein's Avatar
    Join Date
    Mar 2013
    Location
    Germany
    Posts
    609
    My Mood
    Sleepy
    Thanks
    10
    Thanked 93 Times in 86 Posts

    Default Re: java

    You will have to convert the input from String to a number. If the user enters something else, a NumberFormatException or something similar will occur. Read the API docs for the various parse() methods from the wrapper classes, like Integer, Long, etc.

  9. #9
    Junior Member
    Join Date
    Dec 2013
    Location
    hyderabad
    Posts
    5
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Re: java

    k thanks for the info bro