2

我创建了以下代码:

A = [0:1:999].*[0:1:999]';
B = mat2str(A);
B(B == fliplr([B]))

并希望它会按回文数过滤(向前和向后相同,例如 99、101、97479 等)。我得到的数字不是回文我的代码有什么问题?

4

2 回答 2

3

尝试这个:

A = [0:1:999].*[0:1:999];
B = str2num( fliplr( num2str(A')))';
palNums = A(A == B);

palNums现在应该只包含回文数。

于 2013-04-27T05:31:36.527 回答
-1

你可以这样做:

A=10:999999;   %I am assuming you want to start from 10 since a single digit will always be palindrome.

for i=1:length(A)
    digits1 = sscanf(strrep(num2str(A(i),10),'.',''),'%1d')'; %If you want to support 
               %numbers more than 10 digits, replace above number accordingly.
    digits2=fliplr(digits1);
    if digits1==digits2
       palindrome(i)=1;
       fprintf('A palindrome\n');
    else
       palindrome(i)=0;
       fprintf('Not a palindrome\n');
    end
end
于 2013-04-27T05:33:26.557 回答