0
this countdown을 사용해 봅니다. 하지만 0에 도달하면이를 되돌려 야합니다. 0에 도달하면 카운트 업해야합니다. 이것이 가능합니까?카운트 다운이 0에 도달하면 카운트 다운하는 방법?
감사합니다.
this countdown을 사용해 봅니다. 하지만 0에 도달하면이를 되돌려 야합니다. 0에 도달하면 카운트 업해야합니다. 이것이 가능합니까?카운트 다운이 0에 도달하면 카운트 다운하는 방법?
감사합니다.
언어를 지정하지 않았으므로 여기에 몇 가지 Java가 있습니다.
알고리즘이 계속 적용됩니다.
// the modifier to apply
int modifier = 1;
// min and max values
int maxValue = 10;
int minValue = -10;
// the value of the count
int count = 0;
// loop forever
while (true) {
// it higher then max or below min
if (count >= maxValue || count <= minValue) {
// invert the modifier
modifier = (modifier * -1);
}
// add modifier to count
count += modifier;
// use it
doSomethingWith(count);
}
이 의지,