jroid8@lemmy.world to Programmer Humor@lemmy.ml · 2 years agoknow the features of your languagelemmy.worldimagemessage-square136linkfedilinkarrow-up1562arrow-down120
arrow-up1542arrow-down1imageknow the features of your languagelemmy.worldjroid8@lemmy.world to Programmer Humor@lemmy.ml · 2 years agomessage-square136linkfedilink
minus-squaredrolex@sopuli.xyzlinkfedilinkarrow-up14·2 years agoLoads 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.
minus-squareunalivejoy@lemm.eelinkfedilinkEnglisharrow-up3arrow-down2·edit-22 years agoThis 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.
minus-squaredrolex@sopuli.xyzlinkfedilinkarrow-up8·2 years agoI think for once I didn’t fuck up. https://cplusplus.com/reference/cstdlib/rand/
Loads of beginners in this thread. Here’s how it’s done in the industry.
The code:
The test:
It works, boss.
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.
I think for once I didn’t fuck up.
https://cplusplus.com/reference/cstdlib/rand/