Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,972 questions

51,915 answers

573 users

How to calculate the sum of digits of 2 power 100 in C++

1 Answer

0 votes
#include <iostream>
#include <cmath>

int sumDigits(char array[]) {
    int sum = 0;
     
    for(int i = 0; array[i]; i++) {
        if (array[i] != '.') {
            sum += (array[i] - '0');
        }
    }  
      
    return sum;
}
 
int main()
{
    int base = 2;
    int exponent = 100;
    
    double power = pow(base, exponent); 
      
    printf("%lf\n", power);
 
    char array[64] = "";
 
    snprintf(array, 32, "%.32f", power);
 
    std::cout << "sum = " << sumDigits(array);
}
   
    
    
    
/*
run:
 
1267650600228229401496703205376.000000
sum = 115
 
*/

 



answered Nov 12, 2023 by avibootz

Related questions

1 answer 47 views
1 answer 110 views
1 answer 115 views
1 answer 79 views
1 answer 71 views
1 answer 111 views
1 answer 110 views
110 views asked Nov 9, 2023 by avibootz
...