Science Fair Projects Ideas - Loop counter

All Science Fair Projects

      

Science Fair Project Encyclopedia for Schools!

  Search    Browse    Forum  Coach    Links    Editor    Help    Tell-a-Friend    Encyclopedia    Dictionary     

Science Fair Project Encyclopedia

For information on any area of science that interests you,
enter a keyword (eg. scientific method, molecule, cloud, carbohydrate etc.).
Or else, you can start by choosing any of the categories below.

Loop counter

A loop counter is a counting variable used in the loop structure of most computer programming languages.

Such variables change with each iteration of a loop, providing a unique value for each individual iteration, and enabling the power of a loop structure to be utilised. The loop counter is often used to help decide when the loop should terminate, for program flow to continue to the next instruction.

It is considered programming custom by many to use the loop counter variable names i, j and k (or so on if needed), where i would be the most outer loop, j the next inner loop, and so on. Most programmers recognise these variable names as being loop counters, and so are not considered ambiguous for their short size. This style is generally agreed to have originated from the early programming of FORTRAN, where these particular variable names did not need to be declared as integers, and so were obvious choices for loop counters that were only temporarily required. The practice also dates back further to mathematical notation where indices for sums and multiplications are often i, j, etc.


Example

for(i = 0; i < 100; i++) {
   for(j = i; j < 100; j++) {
      function(i, j);
   }
}

above: An example of C code involving nested for loops, where the loop counter variables are i and j.

10-26-2009 08:16:03
The contents of this article is licensed from www.wikipedia.org under the GNU Free Documentation License. Click here to see the transparent copy and copyright details
Science kits, science lessons, science toys, maths toys, hobby kits, science games and books - these are some of many products that can help give your kid an edge in their science fair projects, and develop a tremendous interest in the study of science. When shopping for a science kit or other supplies, make sure that you carefully review the features and quality of the products. Compare prices by going to several online stores. Read product reviews online or refer to magazines.

Start by looking for your science kit review or science toy review. Compare prices but remember, Price $ is not everything. Quality does matter.
Science Fair Coach
What do science fair judges look out for?
ScienceHound
Science Fair Projects for students of all ages
All Science Fair Projects.com Site
All Science Fair Projects Homepage
Search | Browse | Links | From-our-Editor | Books | Help | Contact | Privacy | Disclaimer | Copyright Notice