this post was submitted on 18 Aug 2023
597 points (96.1% liked)

Programmer Humor

19564 readers
1374 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] nothacking@discuss.tchncs.de 13 points 1 year ago (5 children)

Is this part of a Hi-Lo implementation for blackjack? (Also, ewww mixed types)

[–] obosob@feddit.uk 9 points 1 year ago* (last edited 1 year ago) (4 children)

Yeah, just use a char for card and test

if(card < '7') count++;
else count--;

Or something, don't mix types.

[–] nothacking@discuss.tchncs.de 1 points 1 year ago (1 children)

Well that won't work for 7, 8 or 9.

[–] obosob@feddit.uk 2 points 1 year ago

I didn't notice that 7,8,9 had no effect on the count. My bad.

load more comments (2 replies)
load more comments (2 replies)