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

Thread: Can you help me decipher what these two conditions mean in pseudocode?

  1. #1
    Junior Member
    Join Date
    Oct 2012
    Posts
    17
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Can you help me decipher what these two conditions mean in pseudocode?

    CONDITION 1: while ( !(choice == 'Q' || choice == 'q') )
    CONDITION 2: while ( choice != 'Q' || choice != 'q' )


  2. #2
    Super Moderator curmudgeon's Avatar
    Join Date
    Aug 2012
    Posts
    1,130
    My Mood
    Cynical
    Thanks
    64
    Thanked 140 Times in 135 Posts

    Default Re: Can you help me decipher what these two conditions mean in pseudocode?

    Condition 2 is always true. Can you see why this is so? One way to figure this out is to use Venn diagrams.

  3. #3
    Junior Member
    Join Date
    Oct 2012
    Posts
    17
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Re: Can you help me decipher what these two conditions mean in pseudocode?

    It looks to me like despite looking a little different they get the same results. I just need some pseudocode of what this is

  4. #4
    Super Moderator curmudgeon's Avatar
    Join Date
    Aug 2012
    Posts
    1,130
    My Mood
    Cynical
    Thanks
    64
    Thanked 140 Times in 135 Posts

    Default Re: Can you help me decipher what these two conditions mean in pseudocode?

    They are most definitely not the same. To make them the same, you'd need to swap either one of the || for &&.

    So ( !(choice == 'Q' || choice == 'q') ) is the same as ( choice != 'Q' && choice != 'q' )

    and ( !(choice == 'Q' && choice == 'q') ) is the same as ( choice != 'Q' || choice != 'q' )

    Again, use Venn diagrams to see that this is so.

  5. #5
    Junior Member
    Join Date
    Oct 2012
    Posts
    17
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Re: Can you help me decipher what these two conditions mean in pseudocode?

    I'm a real novice. I really don't understand the venn diagram link you added.

  6. #6
    Super Moderator curmudgeon's Avatar
    Join Date
    Aug 2012
    Posts
    1,130
    My Mood
    Cynical
    Thanks
    64
    Thanked 140 Times in 135 Posts

    Default Re: Can you help me decipher what these two conditions mean in pseudocode?

    Please click on the image and take a look at this:

    Venn1a.jpg

Similar Threads

  1. Conditions and 'might not have been initialized' error.
    By mwebb in forum What's Wrong With My Code?
    Replies: 8
    Last Post: October 2nd, 2011, 11:22 AM
  2. Need help with pseudocode please
    By nomss in forum Algorithms & Recursion
    Replies: 2
    Last Post: May 18th, 2011, 03:50 AM
  3. Loop conditions not working
    By bmxershane in forum What's Wrong With My Code?
    Replies: 4
    Last Post: May 1st, 2011, 02:25 AM
  4. Hangman help. Comparing arrays and conditions.
    By javanewbie1 in forum What's Wrong With My Code?
    Replies: 2
    Last Post: January 18th, 2011, 09:26 AM
  5. Ambiguity and non-static variable reference error in java
    By jenseits in forum AWT / Java Swing
    Replies: 5
    Last Post: December 8th, 2008, 07:04 PM