Previous character

Report a typo

Write a program that reads four characters and prints the previous character in the Unicode table for each of them.

Sample Input 1:

b
c
d
e

Sample Output 1:

a
b
c
d
Write a program in Kotlin
fun main() {
// write your code here
}
___

Create a free account to access the full topic