Write a program to print multiples of 3 in Java?

There are following way to print multiples of 3 in Java.

  • First convert Arrays to list using Arrays.asList() method.
  • Now get the Stream data from List using arrayList.stream() method.
  • Check if each number is a multiple of 3 using the modulus operator (%).
  • Now call the Collectors.toList() to store all number inside list.
  • Now print the number list.
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;

public class MultpleCheck {
	public static void main(String[] args) {
		List<Integer> list = Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
		List<Integer> number = list.stream().filter(rw -> rw % 3 == 0).collect(Collectors.toList());
		System.out.println("multple of 3 number :- " + number);
	}
}

Output :-

multple of 3 number :- [3, 6, 9]