this post was submitted on 08 Dec 2023
615 points (96.4% liked)

Programmer Humor

32018 readers
1009 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] drolex@sopuli.xyz 17 points 9 months ago (3 children)

Loads of beginners in this thread. Here's how it's done in the industry.

The code:

return a;

The test:

a = rand()%100+1;

It works, boss.

[–] joyjoy@lemm.ee 4 points 9 months ago* (last edited 9 months ago) (2 children)

This must be a custom random function, because it's standard for random to return a float between 0-1 exclusive. Maybe you meant to multiply by 100 instead of modulo.

[–] drolex@sopuli.xyz 10 points 9 months ago (1 children)
[–] Snazz@lemmy.world 5 points 9 months ago

You guys are talking about two different things. Random integer vs random float