0

¿Cómo podrías realizar un ciclo descendente con el método while?

7th May 2020, 9:43 PM
Gsus
Gsus - avatar
2 Respuestas
+ 3
int n = 10; while(n>0){ n-- ; }
7th May 2020, 10:50 PM
Kevin ★
+ 2
Kevin Star tambié se puede así int n = 10; while(n--){ //some code here }
8th May 2020, 12:40 AM
CoffeeByte
CoffeeByte - avatar