Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.stream.IntStream;

public class Main {
    public static void main(String[] args) {
        IntStream i = IntStream.of(6, 5, 7, 1, 2, 3, 3);
        IntStream i2 = i.flatMap(n -> IntStream.of(n * n));
        i2.forEach(System.out::println);

    }
}