在下列代码的横线处填写(),可以使得输出是“1248”。
int i = 3; for (int j = 0; j < 4; j++) { __________; cout << i; }
i++
i *= 2
i += 2
i * 2