How to program simple for loop in vc++6.0? The following is the editor’s introduction to the method of simple for loop programming in vc++6.0. Friends in need, please take a look below. I hope it can help you!
First, establish the language environment and main function main()
Then we can use a for loop. We increase the number by two and loop to 20
The results of each loop are output using the printf statement
Then, return 0, end programming, and you can compile
You can see the compilation results, 0 errors, 0 warnings, run
The result is as we imagined, 2 4 6 8 10 12 16 18 20
Click Save All to complete the saving
? Friends in need, please come and read this article!