Java tutorial
import java.util.stream.IntStream; public class Main { public static void main(String[] args) throws Exception { IntStream.range(0, 10).average().ifPresent(System.out::println); } }