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

Thread: New, currently learning java.

  1. #1
    Junior Member
    Join Date
    Aug 2021
    Location
    Greensboro, Nc
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Smile New, currently learning java.

    Hey, I'm Nathan, and I'm currently learning Java threw codeademy. I'm currently learning how classes work. I joined this forum to try and find people to help me, and you. It's hard sometimes to set everything aside to learn coding. I think friends working along with me would help go a long way. Anyone interested? I'll dm my phone #, or w.e. please only serious people.

  2. #2
    Junior Member
    Join Date
    Aug 2021
    Location
    Greensboro, Nc
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: New, currently learning java.

    Anybody? Haha need a studybudy or someone experienced to help via Webcam. Will pay if need be. Can't afford a boot camp atm.

  3. #3
    Junior Member
    Join Date
    Aug 2021
    Location
    Greensboro, Nc
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: New, currently learning java.

    public class Operators {
    public static void main(String[] args) {
    int a = 6;
    int b = 3;

    boolean ex1 = !(a == 7 && (b >= a || a != a));
    // System.out.println(ex1);

    boolean ex2 = a == b || !(b > 3);
    // System.out.println(ex2);

    boolean ex3 = !(b <= a && b != a + b);
    // System.out.println(ex3);

    }

    can someone solve this?

  4. #4
    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: New, currently learning java.

    can someone solve this?
    Please explain what the problem is.

    Please edit your post and wrap your code with code tags:

    [code]
    **YOUR CODE GOES HERE**
    [/code]

    to get highlighting and preserve formatting.
    If you don't understand my answer, don't ignore it, ask a question.

Similar Threads

  1. learning Java
    By stanley in forum Member Introductions
    Replies: 1
    Last Post: December 8th, 2013, 05:08 PM
  2. Java learning
    By Harsh13 in forum Member Introductions
    Replies: 3
    Last Post: September 10th, 2013, 04:09 AM
  3. I'm just learning Java
    By michael.duffy31 in forum Object Oriented Programming
    Replies: 2
    Last Post: June 5th, 2013, 10:27 AM
  4. Learning java!
    By gagaenter in forum What's Wrong With My Code?
    Replies: 1
    Last Post: May 29th, 2013, 06:21 AM
  5. Learning Java
    By jblankinship in forum Member Introductions
    Replies: 1
    Last Post: October 14th, 2012, 04:14 PM