public class ModExample {
  public static void main(String[] args) {
    int x = 25;
    int hundreds, tens, ones;
    hundreds = x / 100;  // integer division
    tens = ( x % 100 ) / 10;
    ones = ( x % 100 ) % 10;
    System.out.println("hundreds = " + hundreds);
    System.out.println("tens = " + tens);
    System.out.println("ones = " + ones);
  }
}