OR and AND without parenthesis

I

IveCal

Hello, I have a question.
assuming, all letters below are either true or false.
Are the following the same:
1. (A OR B) && (C) && (D OR E OR F OR G OR H)
2. A OR B && C && D OR E OR F OR G OR H
 
J

John W. Kennedy

IveCal said:
Hello, I have a question.
assuming, all letters below are either true or false.
Are the following the same:
1. (A OR B) && (C) && (D OR E OR F OR G OR H)
2. A OR B && C && D OR E OR F OR G OR H

There is no OR in Java. Assuming that you mean ||, no, they are not the same,
just as:

(a + b) * (c) * (d + e + f + g + h)

is not the same as:

a + b * c * d + e + f + g + h
 
G

George N. Morcos

hi

the equation are not the same , they will generate different outputs
the execution sequence will be () --> and --> or

think of it as a numerical equation
 
R

Roedy Green

Hello, I have a question.
assuming, all letters below are either true or false.
Are the following the same:
1. (A OR B) && (C) && (D OR E OR F OR G OR H)
2. A OR B && C && D OR E OR F OR G OR H

There are three things you need to understand to solve problems of
this class:

1. the difference between the two flavours of or | and ||. see
http://mindprod.com/jgloss/boolean.html

2. the difference between the two flavours of or & and &&

3. the precedence table. See
http://mindprod.com/jgloss/precedence.html
 
S

stefanomnn

There is no OR in Java. Assuming that you mean ||, no, they are not the same,
just as:

(a + b) * (c) * (d + e + f + g + h)

is not the same as:

a + b * c * d + e + f + g + h

--
John W. Kennedy
"Only an idiot fights a war on two fronts. Only the heir to the throne of the
kingdom of idiots would fight a war on twelve fronts"
-- J. Michael Straczynski. "Babylon 5", "Ceremonies of Light and Dark"

wonderful answare!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,021
Latest member
AkilahJaim

Latest Threads

Top