public class Main { public static void main(String[] args) { // Ciclo for que imprime los números del 1 al 5 for(int i = 1; i <= 5; i++) { System.out.println(i); } } }
To embed this program on your website, copy the following code and paste it into your website's HTML: