Contact: aviboots(AT)netvision.net.il
41,601 questions
54,243 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 */