Advertisements
Advertisements
प्रश्न
Write an object oriented program in C++ to read an integer number and find the sum of digits of integer [Hint : input 125 output 8 i.e. 1 + 2 + 5 = 8]
उत्तर
# include <iostream.h>
class digit
{
private :
int num;
public :
void getdata();
void sum() ;
} ;
void digit::getdata()
{
cout << "Enter the number";
cin >> num ;
}
void digit::sum()
{
int rem, add = 0;
while (num > 0)
{
rem = num % 10;
add = add + rem;
num = num /10;
}
cout << "The sum of all digit of number = "<< add;
}
void main()
{
digit S;
S.getdata();
S.sum();
}
shaalaa.com
C++ Programming
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?