EDIT: Post this was in response to was deleted, in which the OP asserted that this was no joke, explicitly initialized isTrue to true, and otherwise just swapped the contents of the if statements before saying "the problem still exists".
Very funny. You also swapped around the cout statements compared to your last example.
Lmao... This is Rascake, isn't it? I haven't been too active because of summer break, but apparently something happened and now you've become quite the troll on here.
@Albatross You can just ignore this person. His original user name is Rascake and he has an... exotic way of speaking.
You’re not comparing ‘isTrue’ to true, false or [whatever], if that’s what you meant to do.
To my knowledge, you
1) compare ‘isTrue’ to true. This is false (because isTrue is set to ‘false’).
2) then you take into evaluation ‘false’. This is again false.
3) then you take into evaluation (true&&false). This is again false.
Maybe you meant (true & false)? Anyway, that would be false.
with error code 136
Well, main() returns 136, so...
This code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#include <iostream>
bool is_true; // set to false
int main()
{
if ( is_true == true
|| is_true == false
|| is_true == (true && false) ) // did you mean (true & false) ?
{
std::cout << "False\n";
} else {
std::cout << "Floating point exception (core dumped)\n";
return 136;
}
return 0;
}
IIRC, he created two sockpuppets while still using the "Rascake" name, and had them post to one of his own threads. It was trivially easy to tell they were both him, and IIRC, it was at the point where he got called on it that he decided to delete his accounts.
I am not the tiniest bit surprised that he decided to come back. It was obvious he had some creepy obsession with trolling this forum.
Especially from someone who used to lecture us on we shouldn't waste our time on trivial, meaningless activities.
What could be more trivial and meaningless than what he's doing now?
Remind me, was it Rascake who lied about his age in order to deceive a parent into giving him their child's contact details? I lose track of which creepy troll is which.
Hi guys. Just wanted to clear things up. When I first posted the original topic, me and my brother were both very drunk and thought the code and the question was hilarious because it was so stupid. I have never had an account here, and I am not some regular troll on here. And I'm sorry Albatross for the report, that was a bit too much.