#include <stdio.h>
int main()
{
int rotation, i=0;
char str[80]={0};
printf("Enter Text: ");
scanf("%[^\n]", str);
printf("\"");
printf("Enter Rotation: ");
scanf("%i", &rotation);
while(str[i])
{
if (str[i] >= 'a' && str[i] <= 'z')
printf("%c\n", 'a' + (str[i] - 'a' + rotation)%26);
else
printf("%c\n", str[i]);
i++;
}
return 0;
}
有很難理解這行代碼(的printf( 「%C \ n」, '一個' +(STR [1] - 'A' +旋轉)%26))C旋轉字符串程序?
燦任何人只要寫一個簡要的解釋很快,這將有助於我
這是被稱爲[愷撒密碼]一個簡單的密碼(https://en.wikipedia.org/wiki/Caesar_cipher)的好方法。據說,朱利葉斯使用了3(和23個字母[拉丁字母](https://en.wikipedia.org/wiki/Latin#Phonology))的偏移量,而不是更現代的26個字母的變體 - J,U,和W是新人)。 –
注意不要在本教程中學到錯誤的教訓:此算法僅「加密」[基本拉丁字母](https://en.wikipedia.org/wiki/ISO_basic_Latin_alphabet)字母的小寫字母。文本 - 甚至是英文文本 - 使用比所有基本拉丁字母更多的字母。字符值的算術適用性非常有限。 –