Ok guys, so I\'m doing the Project Euler challenges and I can\'t believe I\'m stuck on the first challenge. I really can\'t see why I\'m getting the wrong answer despite my
int count = 0; for (int i = 1; i <= 1000 / 3; i++) { count = count + (i * 3); if (i < 1000 / 5 && !(i % 3 == 0)) { count = count + (i * 5); } }