Google Interview Question

What subclasses of Collection do you know

Interview Answer

Anonymous

Feb 1, 2012

print the digits of an int package com.google.interview2; public class PrintDigits { public static void main(String[] args){ int num = 985807; int temp = 10; while (num != 0){ System.out.println(num%temp); num = num/temp; } } }