Write a program that reads two Latin letters as characters and compares them ignoring cases. If these characters represent the same letter print true , otherwise false.
Characters. Char type
Compare Latin letters
Report a typo
Sample Input 1:
a
bSample Output 1:
falseSample Input 2:
d
DSample Output 2:
trueWrite a program in Kotlin
fun main() {
// write your code here
}
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.