Hello,
My ouput is showing as...
"1 2 3 (10)(23)(29)"
when it should be...
"1(10) 2(23) 3(29)"
I don't think I am too far off. Here's the code and thanks in advance.
// int[] Groups = {10, 23, 29}; in the constructor
public String toString()
{
String tempStringB = "";
String tempStringA = " ";
String tempStringC = " ";
for (int x = 1; x<=3; x+=1)
{
tempStringB = tempStringB + x + " ";
}
for(int i = 0; i < Group.length;i++)
{
tempStringA = tempStringA + "(" + Groups[i] + ")";
}
tempStringC = tempStringB + tempStringA;
return tempStringC;
}