C # puzzle 28: cyclist

Source: Internet
Author: User

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.