DO WHILE
1 2 3 4 5 |
int a=1; do{ NSLog(@"%i",a); a++; }while (a<=5); |
1 2 3 4 5 |
int a=1; do{ NSLog(@"%i",a); a++; }while (a<=5); |