Exercise: Numeric Operations
Enhance your Kotlin skills by utilizing numeric types and operations to perform specific calculations.
We'll cover the following...
Problem statement
You are tasked with solving a numeric challenge using Kotlin’s numeric types and operations. You have the following variables:
val a: Int = 5val b: Double = 7.5val c: Long = 10L
Perform the following operations and print the results:
Add ...