i was just making a simple script as a test, but it doesn't work
i know it is simple for you guys and maybe stupid but know i want to know where the problem is.
Do you know it?
public class test
{
public static void printDoubleArray()
{
int[] array1 = new int[4];
for (int i=0; 1 <4; i++)
{
array1[i] = i * 2;
}
double[] lijst = {1.4, 3.3, 6.7};
for (int i=0; i <4; i++)
{
System.out.println(i + ". (" + array1[i] + ", " + lijst[i] + ")");
}
}
}
