Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 answers
573 users
fun main() { val radius: Float = 12.0f val surfaceArea: Float = 4.0f * Math.PI.toFloat() * (radius * radius) println("The surface area of Sphere = $surfaceArea") } /* run: The surface area of Sphere = 1809.5574 */