+ 4
What is your programing language
5th Jun 2021, 1:36 PM
Tharul Nejana
Tharul Nejana - avatar
+ 1
for ( /* initialization */; /* condition */; /* end of each iteration */ ) { // body (iterations) }
4th Jun 2021, 4:53 AM
visph
visph - avatar
0
initialization part is executed once at loop start condition is checked at each iteration start to determine if the loop continue or else exit end of each iteration is usually where you increment a counter
4th Jun 2021, 5:03 AM
visph
visph - avatar
0
Harsh Kishore to mention.. Just type `@` ,after that list of recent users will apear ,you can mention any just clicking on name. Hope u got it
4th Jun 2021, 5:38 AM
saurabh
saurabh - avatar
- 1
Use a while loop insted, set variable i before the loop, then use while i is less or equal to five and then pit echos inside A Let i = 0 Let text = hi While(i ‹= 5){ ducument. write(i + text + "‹br›") }
5th Jun 2021, 3:21 PM
HMD
HMD - avatar