Q:

Scala program to print the ASCII value of the corresponding character

belongs to collection: Scala Basic Programs

0

Here, we will get the ASCII value of a character and print it on the console screen.

All Answers

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

Program/Source Code:

The source code to print the ASCII value of the corresponding character is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to print the ASCII value 
// of corresponding character

object Sample{  
    def main(args:Array[String]){  
        var ch:Char='A'
        
        println("Character value: "+ch)
        println("ASCII value    : "+ch.toInt)
    }  
}

Output:

Character value: A
ASCII value    : 65

Explanation:

In the above program, we used an object-oriented approach to create the program. Here, we created an object Sample. We defined main() function. The main() function is the entry point for the program.

In the main() function, we created a character variable ch with initial value 'A'. Here, we get the ASCII value of a character using the toInt method and then printed the character and ASCII value on the console screen.

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

total answers (1)

Scala Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Scala program to swap two numbers... >>
<< Scala program to check whether a given number is E...