85.7k views
3 votes
Most programming languages provide loop statements that help users iteratively process code. In Coral you can write loops that handle many situations. What is the logic behind using a loop statement

User Altralaser
by
4.7k points

1 Answer

0 votes

Answer:

Step-by-step explanation:

When programming loop statements are essential as they allow you to repeat a certain action various times without having to rewrite the same code over and over again for the number of times you want it to repeat. This drastically simplifies the code and saves on computer memory. Loop statements are written so that the same code repeats itself until a pre-set condition is met.

User Mthpvg
by
5.5k points