Skip to content

Instantly share code, notes, and snippets.

@codeperfectplus
Created August 30, 2023 13:48
Show Gist options
  • Select an option

  • Save codeperfectplus/c0a82e358813405299ee2b6e2e124aff to your computer and use it in GitHub Desktop.

Select an option

Save codeperfectplus/c0a82e358813405299ee2b6e2e124aff to your computer and use it in GitHub Desktop.
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