- To print whether number is even or odd
User Input: 3
Output: Odd Number
import java.util.Scanner
fun main(args: Array<String>) {
val userInput = Scanner(System.`in`)
print("Enter your number : ")
var num:Int = userInput.nextInt()
if(num%2==0)println("Even Number")
else println("Odd Number")
}
Enter your number : 4 Even NumberProgram
You should know first :
Even numbers: Numbers perfectly divisible by 2
(number % 2 == 0)
Odd numbers: Numbers not perfectly divisible by 2
(number % 2 != 0)
you can use any one of the above as condition and in else portion just print the other one
ConceptComing Soon !
QuickIn order to succeed you must fail, so that you know what not to do the next time.