how print numbers from 10 to 0 in dart ..., can anybody suggest me pls guys
--
For more ways to connect visit https://www.dartlang.org/community
---
You received this message because you are subscribed to the Google Groups "Dart Misc" group.
To unsubscribe from this group and stop receiving emails from it, send an email to misc+uns...@dartlang.org.
To view this discussion on the web visit https://groups.google.com/a/dartlang.org/d/msgid/misc/322b2495-b8a3-478f-a2a3-0148481c3031%40dartlang.org.
void main() {
int i = 10;
while (i >= 1) {
print(i);
i--;
}
}
void main() {
int i = 10;
do {
print(i);
i--;
} while (i >= 1);
}
--
For more ways to connect visit https://www.dartlang.org/community
---
You received this message because you are subscribed to the Google Groups "Dart Misc" group.
To unsubscribe from this group and stop receiving emails from it, send an email to misc+uns...@dartlang.org.
To view this discussion on the web visit https://groups.google.com/a/dartlang.org/d/msgid/misc/43217629-1210-4406-9b4b-8b1ca7eceb3d%40dartlang.org.
And since we already are on way to some code golfing:
void main() => Iterable.generate(11, (i) => 10 - i).forEach(print);
main() => [for (var i = 10; i >= 0; i--) i].forEach(print);
Den tor. 13. feb. 2020 kl. 08.50 skrev vinay vishnu <vinayvi...@gmail.com>:
>
> Thank you all guys...
>
> --
> For more ways to connect visit https://www.dartlang.org/community
> ---
> You received this message because you are subscribed to the Google Groups "Dart Misc" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to misc+uns...@dartlang.org.
> To view this discussion on the web visit https://groups.google.com/a/dartlang.org/d/msgid/misc/fbe50aa6-644d-4b7c-9f01-56e62c84241a%40dartlang.org.
--
Jacob Bang / julemand101
--
For more ways to connect visit https://www.dartlang.org/community
---
You received this message because you are subscribed to the Google Groups "Dart Misc" group.
To unsubscribe from this group and stop receiving emails from it, send an email to misc+uns...@dartlang.org.
To view this discussion on the web visit https://groups.google.com/a/dartlang.org/d/msgid/misc/CADK_2AX4PPcRRF_gEC5P%3DNxt8DqAE1RQKjYWQkcTbHb_JgXsmw%40mail.gmail.com.
how print numbers from 10 to 0 in dart ..., can anybody suggest me pls guys
--
For more ways to connect visit https://www.dartlang.org/community
---
You received this message because you are subscribed to the Google Groups "Dart Misc" group.
To unsubscribe from this group and stop receiving emails from it, send an email to misc+uns...@dartlang.org.
To view this discussion on the web visit https://groups.google.com/a/dartlang.org/d/msgid/misc/322b2495-b8a3-478f-a2a3-0148481c3031%40dartlang.org.