Skip to content

Instantly share code, notes, and snippets.

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