a general programming construct that allows a program to easily repeat the same set of instruction
Answers
Answered by
0
Answer:
For loop
Explanation:
Example of for loop is
for(i=0;i<=5;i++)
{System.out.println("hi");}
Output
hi
hi
hi
hi
hi
Similar questions