add digits of an integer together c++ code example

Example 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;
}

Example 2: add two numbers in c++

#include <iostream>
using namespace std;

//function declaration
int addition(int a,int b);

int main()
{
	int a,b;	//to store numbers
	int add;	//to store addition 
	
	//read numbers
	cout<<"Enter first number: ";
	cin>>a;
	cout<<"Enter second number: ";
	cin>>b;
	
	//call function
	add=addition(a,b);
	
	//print addition
	cout<<"Addition is: "<<add<<endl;
	
	return 0;
}

//function definition
int addition(int a,int b)
{
	return (a+b);
}

Tags:

Cpp Example