Skip to content

Instantly share code, notes, and snippets.

@edipofederle
Created May 1, 2012 15:28
Show Gist options
  • Select an option

  • Save edipofederle/2568835 to your computer and use it in GitHub Desktop.

Select an option

Save edipofederle/2568835 to your computer and use it in GitHub Desktop.
public class Math {
public static void Main(String[] args) {
float raio = 75;
System.out.println(areaCirculo(raio));
}
private static double areaCirculo(float raio) {
return 3.14 * (raio * raio);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment