Question
I need help with this java script coding.
You just have to go to the website programmingbydoing.com and look for the number 100... as it says on the paper.
a reflection Create new BlueJ project containing a class called AltMethods. Visit: https//programmingbydoing.com/ Create a Bluel project with a new class called AltMethods. Each of the following sections of the website ask you to write a method to achieve a certain goal. Write all your methods into the AltMethods class. Include calls to each method within your main method. o 100 - Distance Formula (5 points) o 101 Month Name (5 points) o 104 - Area Calculator (20 points) Within that same Bluel project, create a new class called Keychains. Write an app that completes task 110 from the website. It may be helpful to look at 108 and towards the final completion of the app. (70 points) 109 as they build
Explanation / Answer
//The code for problem satatement 100:
public static double distance( int x1, int y1, int x2, int y2 )
{
var double = Math.sqrt( Math.pow((x1-x2), 2) + Math.pow((y1-y2), 2) );
rwturn double
}