/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */packageejercicios;/** * * @author roshka */publicclassEjercicio07{publicstaticvoidmain(String[]args){for(inti=0;i<101;i++){if(i%2==0){System.out.println("Divisible por 2: "+i);}else{System.out.println("Divisible por 3: "+i);}}}}