I have three lists,
List<Double> list1= new ArrayList(List.of(1, 1.5));
List<Double> list2= new ArrayList(List.of(30, 25));
List<Double> list3= new ArrayList(List.of(30, 25));
I want to traverse through each simultaneously, and print
1 30 30
1.5 25 25
How can I do this using java-8 stream API?