Question d’entretien chez Deloitte

Write a code to print odd numbers in an array.

Réponse à la question d'entretien

Utilisateur anonyme

8 sept. 2023

for(auto x : nums) { if(x%2==1) cout<< x << endl; }