본문 바로가기
코테/백준

[백준] 3053 택시 기하학 스위프트

by 리드맥 2022. 1. 8.

let input = Double(readLine()!)!

let round1:Double = 1000000
let a = round(input * input * Double.pi * round1) / round1
let b = input * 2 * input
print(a)
print(b)

댓글