DEV Community

Fikredeyas
Fikredeyas

Posted on

Looping is vital

My background

When I got to high school I joined the engineering magnet
program. Then, I went to Montgomery college where I studied
business for two years and switched majors to Info sci. I think that this is the perfect time for me to join Flatiron schools software engineering program because I left college to pursue a different route than my current major. I chose to not continue forward with my business major because it doesn't interest me and I want to venture into tech. Furthermore, I chose software engineering because I really enjoyed engineering in high school. In conclusion,I never had much but I have never used that as an excuse. Next, my love and curiosity for technology will continue to grow as I further my career.

Why looping is important as a beginners!

Loops provide a quick and simple way to repeat an action.

Although there are many distinct forms of loops, they all effectively repeat an action a certain number of times.

Out of all of the forms of looping the most vital is for loops.

We need to look more closely at what for loops do as engineers.

here is an examples...

Image description

A for loop has three parts to it

The first I equals where the user wants the loop starts.

The second I equals where the user wants the loop to end.

Finally, the last I equals the incrementation of the loop

Top comments (0)