necesito escribir los numeros del 1 al 100 con la condicion for facil en java
or(int i=1;i<=100;i++){ System.out.println(i); } A: You can use a for loop to iterate over the elements of an array. The syntax is as follows: for (int i = 0; i < array.length; i++) { // do something with array[i] } In your case, you can use the