icon315 Member Mar 26, 2010 #1 I think that you should make it so that mafia tells you what the Average amount gotten from a Meat-Producing Items.
I think that you should make it so that mafia tells you what the Average amount gotten from a Meat-Producing Items.
icon315 Member Mar 26, 2010 #3 i meant like this Code: Finish Using 456 warm subject gift certificates You Gain 194438 Average meat gained is: 426 meat
i meant like this Code: Finish Using 456 warm subject gift certificates You Gain 194438 Average meat gained is: 426 meat
F forgot my password Member Mar 26, 2010 #4 I understand, I just don't think it's helpful, and wouldn't use it Your example isn't realistic
Rinn Developer Mar 27, 2010 #5 int meat = my_meat(); use(n, i); int avg = (meat - my_meat()) / n; print("Average meat gained is: " + avg.to_string());
int meat = my_meat(); use(n, i); int avg = (meat - my_meat()) / n; print("Average meat gained is: " + avg.to_string());
H heeheehee Developer Staff member Mar 27, 2010 #6 Technically... int avg = (my_meat() - meat) / n; (the way you had it would've returned a negative, no?)
Technically... int avg = (my_meat() - meat) / n; (the way you had it would've returned a negative, no?)