en.hobingoding.com - Hi coders. Today, we will explore how to create a Kotlin program to check odd even number. However, don't hesitate to ask any questions through the comment section below. So, let's see how the code works. Enjoy!
Test Case
Test #1
Input Number : 5
5 is an Odd Number.
Test #2
Input Number : 10
10 is an Even Number.
Source Code
// visit us hobingoding.com
fun main() {
var number: Int
print("Input Number : ")
number = readLine()!!.toInt()
if(number%2==0)
println("${number} is an Even Number.")
else
println("${number} is an Odd Number.")
}
Now that you've seen how the code works, I hope this tutorial has provided a clear understanding about this topic by using Kotlin. With this knowledge, you can explore more programming concepts and create other fascinating programs. Happy coding and keep on learning on your programming journey!
Feel free to share this knowledge with others. See you in the next post!