其他分享
首页 > 其他分享> > 欧拉习题36

欧拉习题36

作者:互联网

题目如下:

The decimal number, 585 = 1001001001_2(binary), is palindromic in both bases.

Find the sum of all numbers, less than one million, which are palindromic in base 10 and base 2.

(Please note that the palindromic number, in either base, may not include leading zeros.)

代码如下:

clear;clc;close all
t = 0;
for i = 1 : 1e6
    n = ceil(log10(i+1));
    m = mod(floor(i./10.^(n-1:-1:0)),10);
    p = dec2bin(i);
    if isequal(flip(m),m) && isequal(p, flip(p))
        t = t + i;
    end
end

标签:10,end,palindromic,36,number,base,isequal,习题,欧拉
来源: https://blog.csdn.net/qshbbh/article/details/121299829