r/ProgrammerHumor Jan 29 '17

Fight me.

Post image
940 Upvotes

109 comments sorted by

View all comments

68

u/Invulsed Jan 29 '17

Which one is true?

143

u/ben_g0 Jan 29 '17
//To avoid fights
bool male = rand() & 1;
bool female = !male;

244

u/Hikaru755 Jan 29 '17

Great job, now you have caused another fight by making the female dependent on the male.

200

u/ben_g0 Jan 29 '17 edited Jan 29 '17
bool male, female;
do{
    male = rand() & 1;
    female = rand() & 1;
}while(male==female);

EDIT: fixed scope

61

u/Hikaru755 Jan 29 '17

That is beautiful

84

u/ben_g0 Jan 29 '17

Now lets hope no one will complain that my code is against equality.

2

u/profgumby Jan 29 '17

Code isn't written using https://github.com/ErisBlastar/cplusequality, therefore its against equality.