Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Compute the sum of the digits of an integer

C++ For Loop: Exercise-83 with Solution

Write a program in C++ to compute the sum of the digits of an integer.

Pictorial Presentation:

C++ Exercises: Compute the sum of the digits of an integer

Sample Solution:-

C++ Code :

#include <iostream>
using namespace std;
 
int main()
{
	int num1,sum,n;
	sum=0;
    cout << "\n\n Compute the sum of the digits of an integer:\n";
	cout << "-------------------------------------------------\n";
	cout << " Input any number: ";
	cin>> num1;
	n=num1;
        while (num1 != 0) 
		{
            sum += num1 % 10;
            num1 /= 10;
        }
            cout<<" The sum of the digits of the number "<<n<<" is: " << sum <<endl;  
}

Sample Output:

 Compute the sum of the digits of an integer:                          
-------------------------------------------------                      
 Input any number: 25                                                  
 The sum of the digits of the number 25 is: 7

Flowchart:

Flowchart: Compute the sum of the digits of an integer

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to compare two numbers.
Next: Write a program in C++ to compute the sum of the digits of an integer using function.

What is the difficulty level of this exercise?