Visual Basic.NET Programming. Beginner Lesson 13. For Next

preview_player
Показать описание
This is the thirteenth in a series of computer science video tutorials for beginners, about programming with Visual Basic.NET (VB.NET) in Visual Studio. In this lesson you will learn how to execute a block of code repeatedly using the FOR NEXT construct. This illustrates the third fundamental construct of high level programming, namely iteration. Iteration is also known as looping. You will see how FOR NEXT automatically increments the contents of a variable which serves to count the number of passes through the loop. Indeed, FOR NEXT loops are sometimes referred to as count controlled loops. You will also see how the number of increments with each pass of the loop can be controlled by means of the STEP clause, and how you can even decrement the counter variable.
Рекомендации по теме
Комментарии
Автор

awhhh that was the last one, keep up the good work these are the easiest to understand coding videos ive ever seen. Ill be back for the next one

isaiahcass
Автор

Can you please explain the usage of stOut again? I am struggling to understand it.

ajharul_aunik_remian
Автор

@4:41 why is "stOut = iCount & vbNewLine" wrong?

josejaimefelixgarciagarcia
Автор

I am not understanding why is "stOut = iCount & vbNewLine" is wrong?

ajharul_aunik_remian