The last of u

Report a typo

Write a program that capitalizes all letters after the last u symbol in a word (all letters after last 'u' should be uppercase) and prints the resulting string.

Sample Input 1:

analogue

Sample Output 1:

analoguE
Write a program in Kotlin
fun main() {
val string = readln()
// write here
}
___

Create a free account to access the full topic