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)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay