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);
        int v = i.reduce(0, (n1, n2) -> n1 + n2);

        System.out.println(v);

    }
}