Untitled
unknown
plain_text
2 years ago
188 B
4
Indexable
public class Exercise1 { public static void main(String[] args) { for (int i = 1; i <= 1000; i++) { if (i % 10 == 7) { System.out.println(i); } } } }
Editor is loading...
public class Exercise1 { public static void main(String[] args) { for (int i = 1; i <= 1000; i++) { if (i % 10 == 7) { System.out.println(i); } } } }