Skip to content

Instantly share code, notes, and snippets.

@ilyaBrandon
Created February 23, 2016 15:32
Show Gist options
  • Save ilyaBrandon/fecd4f955743fab8095e to your computer and use it in GitHub Desktop.
Save ilyaBrandon/fecd4f955743fab8095e to your computer and use it in GitHub Desktop.
public class BATTLEFRONT {
public static void main(String[] args) {
double number = 7.0;
System.out.println(square(number));
}
static double square(double x) {
return (x * x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment