Program to find ASCII value of a character in Kotlin
package com.includehelp.basic
import java.util.*
//Main Function, entry Point of Program
fun main(args: Array<String>) {
// InputStream to get Input
val scanner = Scanner(System.`in`)
//Input Character
print("Enter Character : ")
val c = scanner.next()[0]
//Get Ascii Value of Character
val ascii = c.toInt();
//Print AscII Value
println("ASCII Code of $c is $ascii");
}
Output
RUN 1:
Enter Character : A
ASCII Code of A is 65
---
Run 2:
Enter Character : a
ASCII Code of a is 97
---
Run 3:
Enter Character : 3
ASCII Code of 3 is 51
---
run 4:
Enter Character : #
ASCII Code of # is 35
Program to find ASCII value of a character in Kotlin
Output
need an explanation for this answer? contact us directly to get an explanation for this answer