Tagged Questions
12
votes
5answers
535 views
Chaining Bool values give opposite result to expected
Unthinkingly I wrote some code to check that all the values of a struct were set to 0. To accomplish this I used:
bool IsValid() {
return !(0 == year == month == day == hour == minute == second);
...
0
votes
4answers
2k views
printing boolean result in C
I read that
int c;
while(c = getchar( ) != EOF)
{
putchar(c);
}
will print the value 0 or 1 depending on whether the next character is an EOF or not. Because != has a higher precedence than = ...
2
votes
5answers
196 views
simple boolean question
What am I doing wrong here?
I am wanting to display integers from 1-100 who are divisible by either 6 or 7. That's done and working. The next step is to not display any that are divisible by ...
12
votes
5answers
6k views
In Java, what are the boolean “order of operations”?
Let's take a simple example of an object "Cat". I want to be sure the "not null" cat is either orange or grey.
if(cat != null && cat.getColor() == "orange" || cat.getColor() == "grey") {
...