All pastes #2021921 Raw Edit

Unnamed

public text v1 · immutable
#2021921 ·published 2010-12-17 09:30 UTC
rendered paste body
//
// expected result
//
int blafaselbla = Math.random() * 1000 % 23 == 0
    ? 3 * 5 * 7 * 9 * 11 * 13
    : 2 * 4 * 6 * 8 * 10 * 12;


//
// actual result
//
int blafaselbla = Math.random() * 1000 % 23 == 0 ? 3 * 5 * 7 * 9 * 11 * 13 : 2 * 4 * 6 * 8
                                                                             * 10 * 12;