Pregunta de entrevista de ShopRunner

Write an algorithm to print out the digits of an integer without using the substring method.

Respuestas de entrevistas

Anónimo

13 de dic de 2014

divide the number by 10, the quotient becomes the new number and the remainder is the digit to be printed. Loop until the number becomes zero.

2

Anónimo

22 de ene de 2015

Why the questions are so easy? :)

1