3 What is the value or Pie to the 100th decimal place?

1 answer

Answer

1086598

2026-03-22 10:30

+ Follow

solution for nth decimal place in pi value

----------------------------------------------------------------

int i=1,rem = 22%7,result=22/7;

while(i<=n)

{

rem = rem*10;

result = rem/7;

rem = rem%7;

i++;

}

printf("nth decimal%d",result);

input: 15(means 15th decimal place in pi value)...

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.