Generation

generate functionFri, 07 Apr 2023

utilizando la sentencia while, crear un programa que escriba los numeros impares entre el 3 y el 49

n = 3 while (n < 49) { if (n % 2 != 0) cout << n << endl; n = n + 1 }

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