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 two given integers and count the number of digits of the sum value

C++ Basic: Exercise-64 with Solution

Write a C++ program to compute the sum of the two given integers and count the number of digits of the sum value.

Pictorial Presentation:

C++ Exercises: Compute the sum of the  two given integers and  count the number of digits of the sum value

Sample Solution:

C++ Code :

#include <iostream>
#include <sstream>
using namespace std;
int main() {
    int x, y;
    while (cin >> x >> y) {
        stringstream str1;
        str1 << x + y;
        cout << str1.str().size() << endl;
	}
    return 0;
}

Sample Output:

Sample input : 15 20
Sample Output:
2

Flowchart:

Flowchart: Compute the sum of the  two given integers and count the number of digits of the sum value

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program which prints three highest numbers from a list of numbers in descending order.
Next: Write a C++ program to check whether given length of three side form a right triangle.

What is the difficulty level of this exercise?