04 August 2018

C/C++ Program to find sum of digits of a given number

//Program to find sum of digits of a given number
#include<iostream>
using namespace std;
int main()
{
int a,r,num,sum=0;
cout<<"\n enter a number:";
cin>>a;
if(a<0)
    num=-a;
else
    num=a;
while(num>0)
{
    r=num%10;
    sum=sum+r;
    num=num/10;
}
if(a<0)   
    cout<<"\n sum of digits= -"<<sum<<endl;
else
    cout<<"\n sum of digits="<<sum<<endl;
return 0;
}

No comments:

Post a Comment

To convert from Upper case to lowercase(A to a)

//converting from Upper to lower(A to a) import java.util.*; class case { public static void main(String args[]) { System.out.pr...