Q:

Kotlin program to find ASCII value of a character

belongs to collection: Kotlin String Programs

0

Given a character, we have to find its ASCII value.

Example:

    Input:
    c = 'A'

    Output:
    65

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Kotlin program to check whether a character is vow... >>