我的程序应该接受一个字符,如果它是一个字母,则使用 ROT13 对其进行编码,否则保持不变,然后打印结果。
我下面的代码适用于所有小写字母和大写字母 AM,但不适用于大写字母 NZ 和其他符号/数字。任何帮助表示赞赏:)
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#define TRUE 1
#define FALSE 0
#define UPPER_START 65
#define UPPER_END 90
#define LOWER_START 97
#define LOWER_END 122
#define UPPER_MID 77
#define LOWER_MID 109
void testEncode (void); int isValid (char cipherChar); char encode (char letter);
int main (int argc, char* argv[]) {
char cipherChar;
scanf("%c", &cipherChar);
if (isValid(cipherChar) == TRUE) {
printf("%c", encode (cipherChar));
} else if (isValid(cipherChar) == FALSE) {
printf("%c", cipherChar);
}
return EXIT_SUCCESS;
}
int isValid (char cipherChar) {
int valid;
if ((cipherChar >= UPPER_START) &&
(cipherChar <= UPPER_END)) {
valid = TRUE;
} else if ((cipherChar >= LOWER_START) &&
(cipherChar <= LOWER_END)) {
valid = TRUE;
} else {
valid = FALSE;
}
return valid;
}
char encode (char letter) {
if ((letter <= UPPER_MID) || (letter <= LOWER_MID)) {
letter = letter + 13;
} else {
letter = (letter - 13);
}
return letter;
}