so far i have this
import java.util.ArrayList;
public class Sequence
{
private double[] sequence;
public Sequence(String s)
{
String s = "903, 809, 719";
System.out.println
(java.util.Arrays.toString(s.split("\\.")));
}
Will this print the numbers in the string seperated by a comma?
Im then trying to to parse each individual String to get a double, storing these doubles in sequence. How do i do it?