Search:

Type: Posts; User: curmudgeon

Search: Search took 0.09 seconds.

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

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

    1512
  2. 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...
  3. 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.
Results 1 to 3 of 3