public class Node{
public double info;
public Node link;
}
that describes a linked list of real numbers, write a recursive method
for printing all positive numbers from the given list.
For extra credit: write a non-recursive method for performing the same printing task.