Created
August 30, 2023 13:48
-
-
Save codeperfectplus/c0a82e358813405299ee2b6e2e124aff 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
| function main() { | |
| // Write your code here. Read input using 'readLine()' and print output using 'console.log()'. | |
| let r = readLine(); | |
| const PI = Math.PI; | |
| // Print the area of the circle: | |
| console.log(PI * (r * r) ); | |
| // Print the perimeter of the circle: | |
| console.log(2 * PI * r); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment