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 }

Questions about programming?Chat with your personal AI assistant