Oscar Galvan

Generation

generate functionWed, 05 Apr 2023

Escribir un algoritmo que muestre los números impares que están entre el 15 y 100.

for(int i=15; i<=100; i++) { if(i%2!=0) cout << i << endl; }

Want to kickstart your project?Use the new AI Studio to create your code