Skip to content

Latest commit

 

History

History
executable file
·
18 lines (14 loc) · 160 Bytes

File metadata and controls

executable file
·
18 lines (14 loc) · 160 Bytes

while 循环

int balance = 10;
int goal = 20;

while (balance < goal) {
  ...
}

do/while 循环

do {
  ...
} while (balance < goal);