Use the following code to create a function to find the sum of digits in a number. Your function SumOfDigits should take an integer and return an integer. Call this function from main inside a while loop which keeps taking the input until the number is b/w 1 and 1000. #include using namespace std; int main(){ int digit,sum=0; int i =3456; /// 3456 % 10 = 6 ----------------------- /// 3456/10 = 345 //// 345 %10 = 5---------------------------- //// 345/10 = 34 /// 34%10 = 4--------------------------------- /// 34/10 = 3 // 3%10 = 3 ---------------------------------- /// 3/10 = 0 STOP i=3456; while (i!=0){ digit = i %10; cout << digit << " "; sum+=digit; i=i/10; } cout <<"Sum of digits "<

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section6.2: Returning A Single Value
Problem 11E: (Numerical) a. The following is an extremely useful programming algorithm for rounding a real number...
icon
Related questions
Question
100%

Use the following code to create a function to find the sum of digits in a number. Your function SumOfDigits should take an integer and return an integer. Call this function from main inside a while loop which keeps taking the input until the number is b/w 1 and 1000.

#include <iostream>
using namespace std;
int main(){
int digit,sum=0;
int i =3456; /// 3456 % 10 = 6 -----------------------
/// 3456/10 = 345
//// 345 %10 = 5----------------------------
//// 345/10 = 34
/// 34%10 = 4---------------------------------
/// 34/10 = 3
// 3%10 = 3 ----------------------------------
/// 3/10 = 0 STOP
i=3456;
while (i!=0){
digit = i %10;
cout << digit << " ";
sum+=digit;
i=i/10;
}
cout <<"Sum of digits "<<sum;
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Types of Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr