A
Anonymous
Guest
Hey guys, interesting fact that having 26 letters in english alphabet you can come up with up to 29 quintillion words (thats 29 with 27 zero's). the problem is, I just found out the fact and now want to make my own assessment of the number. My rough estimation only went up to 24 * 10^35 words of up to 26 letters in length, and more than that i have still not excluded all the combinations of repeating letters(gggggggggg), and closed sound words(sqtrhk). I am looking for a calculator that will go up to about 35-40 descimal places. My friends suggestion was to write a program in c++ using setprecision(40) for the output:
but it's pretty hard to write in (26*1^26)+(26*2^26)+....(26*26^26)
for the calculation of the number and then subtract 26^2 for all the repeating letter words and i still have not come up with an equasion for all the complicated not sound repeating words (llleeeessssssaaaannnn)
Code:
#include <iomanip.h>
//code for the calculations
std::cout<<setprescision(40)<<answer;
for the calculation of the number and then subtract 26^2 for all the repeating letter words and i still have not come up with an equasion for all the complicated not sound repeating words (llleeeessssssaaaannnn)