Created
May 1, 2012 15:28
-
-
Save edipofederle/2568835 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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