我正在尝试为一项作业制作一个C#Caesar Cipher。我一直试图这样做很长一段时间,并没有取得任何进展。
我现在遇到的问题是,而不是使用我的encrypted_text并对其进行解密,它只是cycles through that alphabet, ignoring the character that it started on.应该发生的是它应该采用encrypted_text并循环通过字母表将每个字母更改为一定数量。
这是我到目前为止所做的:
using System;
using System.IO;
class cipher
{
public static void Main(string[] args)
{
string encrypted_text = "exxego";
string decoded_text = "";
char character;
int shift = 0;
bool userright = false;
char[] alphabet = new char[26] { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' };
do
{
Console.WriteLine("How many times would you like to shift? (Between 0 and 26)");
shift = Convert.ToInt32(Console.ReadLine());
if (shift > 26)
{
Console.WriteLine("Over the limit");
userright = false;
}
if (shift < 0)
{
Console.WriteLine("Under the limit");
userright = false;
}
if (shift <= 26 && shift >= 0)
{
userright = true;
}
} while (userright == false);
for (int i = 0; i < alphabet.Length; i++)
{
decoded_text = "";
foreach (char c in encrypted_text)
{
character = c;
if (character == '\'' || character == ' ')
continue;
shift = Array.IndexOf(alphabet, character) - i;
if (shift <= 0)
shift = shift + 26;
if (shift >= 26)
shift = shift - 26;
decoded_text += alphabet[shift];
}
Console.WriteLine("\nShift #{0} \n{1}", i + 1, decoded_text);
}
StreamWriter file = new StreamWriter("decryptedtext.txt");
file.WriteLine(decoded_text);
file.Close();
}
}
从我的照片中可以看出,我越来越近了。我只需要能够解决这个问题。任何帮助将不胜感激。如果这是一个简单的问题/解决方案,请原谅我,我真的很陌生。
答案 0 :(得分:2)
您的字母表包含大写字母,但您的输入完全是小写字母。您需要通过将所有输入转换为相同的大小写或处理大写/小写字母来处理这种情况。