1

我不确定我还能如何进行循环检查以查找字母,通过添加“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;
        } 
    }
}
4

5 回答 5

0

您的问题不在于重置i,您的问题在于

output = "C" + intoutput + " ";
...
output = intoutput + " ";

这些不附加到output,它们分配output,这意味着先前分配的值会丢失。你会想要类似的东西

output = output + "C" + intoutput + " ";
...
output = output + intoutput + " ";
于 2013-02-20T09:13:48.087 回答
0

您在每次迭代中都覆盖了输出。

输出+=“C”+int输出+“”;输出+=int输出+“”;

于 2013-02-20T09:22:33.720 回答
0

您说output =which重新分配 output给不同的值,它不会添加到它,而是您想要output +=

此外,字母字符按顺序存储在字符集 ( 'b' = 'a' + 1) 中,这应该有效:

foreach (Char c in input)
{
  if ('A' <= c <= 'Z')
    output += "C" + (int)(c - 'A') + " ";
  else if ('a' <= c <= 'z')
    output += (int)(c - 'a') + " ";
}

编辑:另一个版本:

foreach (Char c in input)
{
  if (Char.IsUpper(c))
    output += "C" + (int)(c - 'A') + " ";
  else if (Char.IsLower(c))
    output += (int)(c - 'a') + " ";
}

以上两种方法都比您的算法快得多,因为它不必遍历 1-52 个值,只需进行 1-4 次比较。

于 2013-02-20T09:27:04.327 回答
0
  var output = new StringBuilder();
  foreach (Char c in input)
  {
    for (int i = 0; i < alphabet.Length; i++)
    {
      if (c == alphabet[i])
      {
        if (Char.IsUpper(c))
          output.AppendFormat("C{0} ", i-26); 
        else
          output.AppendFormat("{0} ",i);
      }
    }
  }
  return output.ToString();

或者

  return string.Join(" ", input.ToCharArray().Select(c =>
  {
    for (int i = 0; i < alphabet.Length; i++)
    {
      if (c == alphabet[i])
        return Char.IsUpper(c) ?
          string.Format("C{0}", i - 26)
          :
          i.ToString();
    }
    return "";
  }).ToArray()).Trim();

或没有循环

  //static List<char> alphabet = new List<char> { 'a', 'b', 'c'...};
  int i;
  return string.Join(" ", input.ToCharArray().Select(c =>
    (i = alphabet.IndexOf(c)) != -1 ?
      (Char.IsUpper(c) ?
        string.Format("C{0}", i - 26)
        :
        i.ToString()
      )
      :
     ""
  ).ToArray());
}

最后没有字母数组

  return string.Join(" ", input.ToCharArray().Select(c =>
    Char.IsLetter(c) ?
      (Char.IsUpper(c) ?
        string.Format("C{0}", c-'A')
        :
        (c-'a').ToString()
      )
      :
     ""
  ).ToArray()).Trim();
于 2013-02-20T09:35:39.377 回答
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 = output + "C" + intoutput + " ";
                     }
                     else
                     {
                         output = output + intoutput + " ";
                     }
                   }
                }
            }
         return output;
       } 
     }
  }
于 2013-12-06T20:04:53.650 回答