Contact: aviboots(AT)netvision.net.il
41,215 questions
53,717 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 */