2016-12-04 4 views

답변

1

언어를 지정하지 않았으므로 여기에 몇 가지 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); 
} 

이 의지,

  • 에서

    • 시작 0
    • 에 카운트 다운 -10
    • -
    • 카운트 카운트 반복