This file contains 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
real function area_of_circular_room(room) | |
real room(1) | |
real radius | |
radius = room(1) | |
area_of_circular_room = (radius * 2)**2 | |
return | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment