You are on page 1of 1

public class CicloFor{

public static void main(String args[]){

for(int i = 1; i <= 5; i++){


System.out.print(i + ", ");
}
}
}

You might also like