forvar i=0 ;i1;i++
This code snippet is using a for loop to execute a block of code as long as the condition i<1 is true.
The loop initializes i with a value of 0, then checks if i<1. If the condition is true, the code inside the loop is executed. After the code execution, the loop increments i by 1.
Since the condition i<1 will always be false after the first iteration (i is incremented to 1), the loop will run only once.
原文地址: https://www.cveoy.top/t/topic/i4fN 著作权归作者所有。请勿转载和采集!