Generation

generate functionSat, 17 Jun 2023

Mostrar en pantalla los números pares entre el numero 50 y el 100.

for (i = 50; i <= 100; i++) { if (i % 2 == 0) { Console.WriteLine(i); } }

Questions about programming?Chat with your personal AI assistant