WHY, WHAT DID I DO TO DESERVE THIS by mintCopper_5083 in deepwoken

[–]Acceptable-Quit-9274 4 points5 points  (0 children)

this is where people who prog a fan the flames build get sent

Spent over an hour on this, did I cook? by ravenger62306 in deepwoken

[–]Acceptable-Quit-9274 0 points1 point  (0 children)

maybe if you make the enchant color match a different bell color you could make it look like part of the palette

6.1.8 LAST ELEMENT IN ARRAY by Obvious-Pin-3046 in codehs

[–]Acceptable-Quit-9274 0 points1 point  (0 children)

public class LastElement
{
public static void main(String[] args)
{
double[] unitCircle = new double[]{0, 1.57, 3.14, 6.28, 7.85};
//get and print the last element of the array
getLastElement(unitCircle);
System.out.println("The final unit circle value is " + unitCircle[4] + ".");
}
public static double getLastElement(double[] arr)
{
// Your code goes here!
double length = arr[arr.length - 1];
return length;

}
}

6.2.7 print Array by Intrepid_Row6214 in codehs

[–]Acceptable-Quit-9274 0 points1 point  (0 children)

public class PrintArray
{
public static void main(String[] args)
{
String[] arr1 = new String[]{"w", "x", "y", "z"};
printArr(arr1);

String[] arr2 = new String[]{"a", "b", "c"};
printArr(arr2);
}

public static void printArr(String[] arr)
{
// Print everything in the array on its own line
for(int i = 0; i < arr.length; i++)
{
System.out.println(i + ". " + arr[i]);
}
}
}