mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
625 B
34 lines
625 B
package main |
|
|
|
import ( |
|
"fmt" |
|
"os" |
|
) |
|
|
|
func main() { |
|
if len(os.Args) < 2 || len(os.Args) > 2 { |
|
fmt.Println() |
|
return |
|
} |
|
|
|
arrayRune := []rune(os.Args[1]) |
|
var result string |
|
|
|
for i := 0; i < len(arrayRune); i++ { |
|
if arrayRune[i] >= 'a' && arrayRune[i] <= 'z' { |
|
if arrayRune[i] >= 'm' { |
|
arrayRune[i] = arrayRune[i] - 12 |
|
} else { |
|
arrayRune[i] = arrayRune[i] + 14 |
|
} |
|
} else if arrayRune[i] >= 'A' && arrayRune[i] <= 'Z' { |
|
if arrayRune[i] >= 'M' { |
|
arrayRune[i] = arrayRune[i] - 12 |
|
} else { |
|
arrayRune[i] = arrayRune[i] + 14 |
|
} |
|
} |
|
result += string(arrayRune[i]) |
|
} |
|
fmt.Println(result) |
|
}
|
|
|