Day 5 Training:
Loops:
for while do while
//initialization
//check
//increment or dec int i=0;
for(int i=0;i<5;i++) int i=0; do{
{ while(i<5)
{ i++;
}while(i<5);
i++;
} }
Day 5 Training:
Loops:
for while do while
//initialization
//check
//increment or dec int i=0;
for(int i=0;i<5;i++) int i=0; do{
{ while(i<5)
{ i++;
}while(i<5);
i++;
} }
0 Comments