Introduction
I have used CodeBlocks compiler for debugging purpose. But you can use any C++ programming language compiler as per your availability.
#include <iostream> using namespace std; int main() { int num, total; //Reading number cout<<"Enter any number: "<<endl; cin>>num; //Adding sum of digit in total variable for(total = 0; num > 0; num = num/10) total = total + (num%10); //Printing sum of digit cout<<"Sum of digits: "<< total; return 0; }
Result