Shamba

Special

Feb 20th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3. #include<math.h>
  4.  
  5. int main()
  6. {
  7.   int n, i, b=1,n1,d,sum=0;
  8.  
  9.   cout << "enter an no.";
  10.   cin >> d;
  11.   n=d;
  12.   while(n!=0)
  13.   {
  14.       n1=n%10;
  15.       for(i=n1;i>0;i--)
  16.       {
  17.           b=b*i;
  18.          
  19.       }
  20.       sum+=b;
  21.       n=n/10;
  22.       b=1;
  23.   }
  24.  
  25.   if(sum==d)
  26.   cout<<"special";
  27.   else
  28.   cout<<"not";
  29.  
  30. return 0;
  31.  
  32. }
Add Comment
Please, Sign In to add comment