Question d’entretien chez Google

What subclasses of Collection do you know

Réponse à la question d'entretien

Utilisateur anonyme

1 févr. 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; } } }