Guest User

Untitled

a guest
Jan 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. int Contardig(int x)
  2. {
  3. int y,cont=0,aux;
  4. while (x!=0)
  5. {
  6. aux=x%10;
  7. x=x/10;
  8. cont++;
Add Comment
Please, Sign In to add comment