168k views
2 votes
Write a short program using a for loop to create an ArrayList called multiplesOf3 of the first 100 multiples of 3 starting with 0. JAVA

User Elodie
by
7.7k points

1 Answer

2 votes

Answer:

public class MultiplesOf3 {

public static void main(String[] args) {

ArrayList<Integer> multiplesOf3 = new ArrayList<>();

for (int i = 0; i <= 100; i++) {

if (i % 3 == 0) {

multiplesOf3.add(i);

}

}

}

}

User CCSab
by
7.9k points