Answer to Question #13567 in C++ for maverick

Question #13567
write a program to read 10 integers. then add up the calues of each of the individual digits and print out the sum (use while loop)
1
Expert's answer
2012-08-30T09:18:22-0400
#include <iostream>

using namespace std;

int main()
{
int sum = 0;
int number;
cout<<"Enter 10 numbers: ";
for (int i=0;i<10;i++)
{
& cin>>number;
& while (number!=0)
& {
sum+=number%10;
number/=10;
& }
}
cout<<"Sum of all the digits: "<<sum<<endl;
return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS