Ejercicio
Múltiplos
Objetivo
Cree un programa en java para escribir en pantalla los números del 1 al 500 que son múltiplos de 3 y también múltiplos de 5 (sugerencia: use el resto de la división).
Código de Ejemplo
public class Program {
// Main entry point of the program
public static void main(String[] args) {
// Loop through numbers from 1 to 500
for (int i = 1; i <= 500; i++) {
// Check if the number is divisible by both 3 and 5 using the modulo operator
if (i % 3 == 0 && i % 5 == 0) {
// If divisible by both, display the number
System.out.println(i);
}
}
}
}