import 'dart:io'; void main() {. // FOR Loop. // WAP to find the even numbers between 1 to 10. for (int i = 1; i <= 10; i++) {. if ( i % 2 == 0) { print(i); }
確定! 回上一頁