WHILE
1 2 3 4 5 6 7 8 |
//Exercicio 4 - While int a=0; while (a<10) { NSLog(@"%i",a); a++; } |
1 2 3 4 5 6 7 8 |
//Exercicio 4 - While int a=0; while (a<10) { NSLog(@"%i",a); a++; } |