mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
24 lines
375 B
C
24 lines
375 B
C
#include <stdio.h>
|
|
|
|
const char REPLACE_MAP[] = "ZYXWVUTSRQPONMLKJIHGFEDCBA";
|
|
|
|
char s[100];
|
|
|
|
int main() {
|
|
gets(s);
|
|
|
|
int len = strlen(s);
|
|
|
|
for (int i = 0; i < len; i++) {
|
|
if (s[i] >= 'A' && s[i] <= 'Z') {
|
|
printf("%c", REPLACE_MAP[s[i] - 'A']);
|
|
} else {
|
|
printf("%c", s[i]);
|
|
}
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
return 0;
|
|
}
|