Answers for "how to add digits in a number in c++"

1

sum of digits in c++

int x, s = 0;
   cout << "Enter the number : ";
   cin >> x;
   while (x != 0) {
      s = s + x % 10;
      x = x / 10;
   }
Posted by: Guest on April-06-2021
1

C++ sum the digits of an integer

// sum the digits of an integer
int getSum(long long n) {
  int sum = 0;
  int m = n;
  while(n > 0) {    
    m = n % 10;    
    sum = sum + m;    
    n = n / 10;    
  } 
  return sum;
}
Posted by: Guest on April-21-2021

Code answers related to "how to add digits in a number in c++"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language