Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save edipofederle/2568923 to your computer and use it in GitHub Desktop.
private static double areaCirculo(float raio) {
if(raio == null)
// NullPointerException
return 3.14 * (raio * raio);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment