Day 5 Training

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++;

} }

Post a Comment

0 Comments