Hello, I'm new here and in the programming world. I would like to know how to do the last part of this exercise, using For. So far I've done this:
for(int i = 1; i<=100; i++) {
if(i%2==0) {
System.out.println(i+" é par");
}else {
System.out.println(i+" é ímpar");
}
if(i%3==0){
System.out.println("é múltiplo de 3");
}
if(i%4==0) {
System.out.println("múltiplo de 4");
}