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

欧拉习题40

作者:互联网

题目如下:

An irrational decimal fraction is created by concatenating the positive integers:

0.123456789101112131415161718192021...

It can be seen that the 12th digit of the fractional part is 1.

If dn represents the nth digit of the fractional part, find the value of the following expression.

d1 × d10 × d100 × d1000 × d10000 × d100000 × d1000000

代码如下

clear;clc;close all
a = sprintf('%d',1:1e6);
prod(a(10.^(0:6))-'0')

标签:0.123456789101112131415161718192021,digit,40,如下,part,fractional,习题,欧拉
来源: https://blog.csdn.net/qshbbh/article/details/121306845