在C中使用Simple Cesar Cipher

时间:2015-09-23 10:02:36

标签: c encryption caesar-cipher

我在大学的课程中工作,他们使用像典型的Cesar Cipher这样的问题。它更像是一个功能性程序,需要是最基本的。

该程序将从用户6590收到一个号码,例如当用户插入65时会显示68。将添加3个数字,但当用户提供90时,会提供6790+3 ---->90,65,66,67。这是从6590的一个周期。

#include <stdio.h>

int cesar_encrypted(int x)
{
  return (x+3);
}


void test_cesar_encrypted(void)
{
    int x;
    scanf("%d", &x);
    int z = cesar_encrypted(x);
    printf("%s\n", z);
}

int main(){
    test_cesar_basic();

}

我做了这个示例代码,但我们只能更进一步,如果你给90,他会给93,我想要67

任何人都可以帮我把它包裹在90左右吗?

4 个答案:

答案 0 :(得分:4)

你可以使用模运算符,它给出了除法的余数:

int cesar_encrypted(int x)
{
  return (x - 65 + 3)%(91 - 65) + 65;
}

实施Sulthan的建议(见评论),它看起来像这样:

int cesar_encrypted(int x)
{
  const int n_chars = 'Z' - 'A' + 1;
  const int shift = 3;
  return (x - 'A' + shift)%n_chars + 'A';
}

答案 1 :(得分:1)

使用模运算%来定义所需间隔的上限和 然后使用加法+来定义下限:

int cesar_encrypted(int x)
{ 
   // to wrap around 90  
   int encrypted = (x - 65 +3) % (90 - 65);
   // to start from 65, translate it adding 65  
   encrypted +=65;
   return encrypted;
}

或单行:

int cesar_encrypted(int x){  
   return  (x - 65 + 3) % (90 - 65)  + 65; // x in range [65,90]
}

答案 2 :(得分:1)

首先,让我们定义一些常量以使代码更具可读性:

const int MIN_CHAR = 'A'; //equivalent to 65
const int MAX_CHAR = 'Z'; //equivalent to 90
const int NUM_CHARS = MAX_CHAR - MIN_CHAR + 1; //how many chars we have
const int SHIFT = 3; //how many characters we shift when ecrypting

现在

int cesar_encrypted(int x) {
    if (x + SHIFT > MAX_CHAR) {
        return x + SHIFT - NUM_CHARS; //just subtract the number of chars.
    }

    return x + SHIFT;
}

也可以使用模块运算符

编写
int cesar_encrypted(int x) {
    return (x + SHIFT - MIN_CHAR) % NUM_CHARS + MIN_CHAR;
}

答案 3 :(得分:0)

如果x+3 > 90,请换行至65,否则不执行任何操作:

int cesar_encrypted(int x)
{
    return (x+3 > 90 ? ((x+3) % 90 + 64) : x+3);
}

您可以在此处查看其工作原理:http://ideone.com/sunxTb
当然你可以简化这个来获得没有if语句的代码(如其他人提到的那样):

return (x - 65 + 3)%(91 - 65) + 65;

除此之外,您的代码中还有一些小错字。这里的类型不匹配:

int z = cesar_encrypted(x);
printf("%s\n", z); // you are trying to print a string instead of int