0
is there a way to count in higher increments?
Is there a way to manipulate the increment operator (++;--) to count by 2s? If not, what is a way to accomplish this?
1 ответ
+ 6
No.
Way -> c += 2; or c -= 2;
Is there a way to manipulate the increment operator (++;--) to count by 2s? If not, what is a way to accomplish this?