Taller - Jekajar2015/OPP2015 GitHub Wiki
Ejercicio 2
import java.util.Scanner; /* To change this template, choose Tools | Templates and open the template in the editor. *//** * @author JEKAJAR */
public class Spaces {
static void spaces(int x) { if (x >= 10) { spaces(x / 10); } System.out.print( x % 10 + " ");
}
public static void main(String[] args) { int number; Scanner userInput = new Scanner(System.in); number = userInput.nextInt(); spaces(number); }
}