The symbol case

Report a typo

You get a symbol as input. Just print out information about the symbol case: "UPPER", "lower" or "Title" for each of the possible cases.

Sample Input 1:

72

Sample Output 1:

UPPER
Write a program in Go
package main

import (
"fmt"
"unicode"
)

func main() {
var symbol rune
fmt.Scan(&symbol)

if unicode.IsUpper(?) {
fmt.Println("UPPER")
}

// put your conditions next
}
___

Create a free account to access the full topic