Skip to content

Instantly share code, notes, and snippets.

@Yur-ok
Created December 8, 2015 13:36
Show Gist options
  • Save Yur-ok/7fd6f7418ba9646c92dd to your computer and use it in GitHub Desktop.
Save Yur-ok/7fd6f7418ba9646c92dd to your computer and use it in GitHub Desktop.
package Lesson2.KeyPoin1;
/**
* Created by Юрий on 08.12.2015.
*/
public class SquareOverriding {
public static void main(String[] args) {
System.out.println(square(5));
System.out.println(square(3.0));
}
static double square(double number) {
number = number * number;
return number;
}
static int square(int number) {
number = number * number;
return number;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment