Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. inline xint dtally(xint x)
  2. {
  3. xint t = 0;
  4. while (x) t += 1<<((x%10) * 6), x /= 10;
  5.  
  6. return t;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement