Advertisement
kolinsol

Untitled

Jan 2nd, 2017
2,612
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         static public void KolvoCifr(int n)
  2.         {
  3.             int i = 0;
  4.             int sum = 0;
  5.             int buf = n;
  6.             while (n > 0)
  7.             {
  8.                 sum=0;
  9.                 buf=n;
  10.                 while (buf != 0)
  11.                 {
  12.                     sum = sum + buf % 10;
  13.                     buf = buf / 10;
  14.                 }
  15.                 n-=sum;
  16.                 i++;
  17.                 System.out.println(n);
  18.             }
  19.             System.out.println(i);
  20.         }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement