public class desafioMultiplosde3 {
public static void main(String[] args) {
// TODO Auto-generated method stub
for(int numero = 1;numero <=100;numero++) {
if(numero % 3 == 0) {
System.out.println(numero);
}
}
}
}