Ejercicio07.java 237 Bytes
Newer Older
Silvia Barrientos committed
1 2 3 4 5 6 7 8 9 10 11


public class Ejercicio07 {
    public static void main(String[] args) {
        for(int i = 1; i < 101; i++){
            if((i % 2 == 0) && (i % 3 == 0)){
                System.out.printf(" %d - ",i);
            }
        }
    }
}