Thread: For loops
View Single Post
  #7 (permalink)  
Old 12-03-2008, 8:06 AM
JohnH's Avatar
JohnH JohnH is offline
VB.NET Forum Moderator
.NET Framework: .NET 3.5 (VS 2008)
 
Join Date: Dec 2005
Location: Norway
Age: 37
Posts: 10,325
Reputation: 1315
JohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond repute
Default

Quote:
Are they usually a confusing subject to learn at first?
No, loops is usually the first a beginner learns, and the concept is one of the primary targets of computing; loops is used to repeat something, and computers has a high ability to make repetetive task easy for us, tell a computer what to do and it can do the same thing as many times you want without more effort from you. For-Each is just as common loop as For-Next, it is like saying "do as specified with one item.. and do the same with all other items". Other loops include Do/While which usually means keep doing something over and over until condition says stop.
__________________
Reply With Quote