package sitaxe_variaveis_e_fluxo;
public class MultiploDe3 {
public static void main(String[] args) {
for (int fator = 0; fator < 100; fator++) {
if (fator % 3 == 0) {
System.out.print(fator + " ");
}
if (fator % 12 == 0 && fator != 0) {
System.out.println();
}
}
}
}