DEV Community

Cover image for Loop
Coder
Coder

Posted on

Loop

void main() {
  print('Om Namah Shivay');
//loops
//1.for loop
  for (var i = 1; i <= 10; i++) {
    String ans = 'even';
    print('$i  is ${i % 2 == 0 ? ans = 'even' : ans = 'odd'}');
  }

  //2.while loop
  int j = 1;
  while (j <= 10) {
    if (j % 2 == 0) {
      print('$j is even');
    } else {
      print('$j is odd');
    }
    j++;
  }
}

Enter fullscreen mode Exit fullscreen mode

I understood

Top comments (0)

Sentry growth stunted Image

If you are wasting time trying to track down the cause of a crash, it’s time for a better solution. Get your crash rates to zero (or close to zero as possible) with less time and effort.

Try Sentry for more visibility into crashes, better workflow tools, and customizable alerts and reporting.

Switch Tools