您好我有以下的代碼,它給我的錯誤,迴文(字符串)是一種方法,在給定的方法無效。一個函數,檢查給定的單詞是否迴文
請幫助解決問題
namespace justtocheck
{
public class Program
{
public static bool Palindrome(string word)
{
string first = word.Substring(0, word.Length/2);
char[] arr = word.ToCharArray();
Array.Reverse(arr);
string temp = new string(arr);
string second = temp.Substring(0, temp.Length/2);
return first.Equals(second);
//throw new NotImplementedException("Waiting to be implemented.");
}
public static void Main(string[] args)
{
Console.WriteLine(Palindrome.IsPalindrome("Deleveled"));
}
}
}
有這個代碼不'IsPalindrome()'方法。 – Claies
嗨,仍然顯示一些錯誤,請參考testdome.com/questions/c-sharp/palindrome/7282?visibility=1 –
你不會學習如何編程,要求人們爲你寫代碼測試問題的答案.... – Claies