The following puzzles and the following five puzzles have reversed the situation for you. They do not show youCodeAnd then ask you what the code will do. They will ask you to write the code, but the number will be small. These puzzles are called "loop players ". You will see a loop, which should be terminated quickly, and your task is to write a variable declaration that places it just before the loop, so that the loop can be infinite. For example, consider the following for loop:
For (INT I = start; I <= start + 1; I ++)
{
}
It seems that it should only be iterated twice, but it can be made infinitely loop through the overflow behavior shown in puzzle 26. The following statement uses this technique:
Int start = int. maxvalue-1;
Now it's your turn. What kind of statement can turn the following loop into an infinite loop?
While (I = I + 1)
{
}
C # directory