Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 215 Bytes

summaries.md

File metadata and controls

19 lines (14 loc) · 215 Bytes

Looping

Looping

  1. Counted Loop
    • for
    • for each
  2. Uncounted Loop
    • while
    • do while

for

for(int number = 1; number <= 5; number++ ){
    System.out.println("Number :"+ number);
}