我不确定我还能如何进行循环检查以查找字母,通过添加“C”(或不是)来检查它是否大写,然后继续字符串中的其余字符。我不太擅长解释这里发生的事情,因为我对 C# 有点陌生。但是 'for' 循环中的 'i' 永远不会重置为 0,从而导致您收到错误的输出。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Encrypt
{
class Program
{
static char[] alphabet = new char[52] { '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', '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' };
static void Main(string[] args)
{
string input = Console.ReadLine();
string output = Decode(input);
Console.WriteLine(output);
Console.ReadLine();
}
static string Decode(string input)
{
string output = "";
foreach (Char c in input)
{
for (int i = 0; i < alphabet.GetLength(0); i++)
{
if (c == alphabet[i])
{
int intoutput = i + 1;
if (intoutput > 26)
{
intoutput = intoutput - 26;
output = "C" + intoutput + " ";
}
else
{
output = intoutput + " ";
}
}
}
}
return output;
}
}
}