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: where is my fault?

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

    Default where is my fault?

    public class Teenagers
    {
    public static void main(String[] args)
    {
    int a=Integer.parseInt("args[0]");
    int b=Integer.parseInt("args[1]");
    boolean teen_a,teen_b;
    teen_a=(a>=13) && (a<=19);
    teen_b=(b>=13) && (b<=19);
    System.out.println((a||b) && (a!=b));
    }
    }


    i have 1 error on the 10 line! and the error is ''||'' ! i learned that this symbol is ''or'' but why is it not working?


  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: where is my fault?

    Please copy the full text of the error message and paste it here, not just one line of it.

    Please edit your post and wrap your code with code tags:
    [code=java]
    <YOUR CODE HERE>
    [/code]
    to get highlighting and preserve formatting.

    Note: || is a boolean operator that takes two boolean operands.
    What data types does the code use? What are a and b?
    If you don't understand my answer, don't ignore it, ask a question.

Similar Threads

  1. Applet isn't showing up. Perhaps it's a browser fault.
    By javapenguin in forum What's Wrong With My Code?
    Replies: 33
    Last Post: May 14th, 2012, 08:46 PM
  2. Soap With Attachment AXIS Fault
    By anoopasta in forum What's Wrong With My Code?
    Replies: 1
    Last Post: November 23rd, 2010, 11:09 AM