Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- #include <vector>
- #include <algorithm>
- using namespace std;
- int main()
- {
- int n;
- cin >> n; cin.ignore();
- // Boucle pour afficher les nombres impairs de 1 à n
- for (int i = 1; i <= n; i += 2) {
- cout << i << endl;
- }
- return 0;
- }
- /*
- 01 Test 1
- Entrée
- Sortie attendue
- 9
- 1
- 3
- 5
- 7
- 9
- 02 Test 2
- Entrée
- Sortie attendue
- 101
- 1
- 3
- 5
- 7
- 9
- 11
- 13
- 15
- 17
- 19
- 21
- 23
- 25
- 27
- 29
- 31
- 33
- 35
- 37
- 39
- 41
- 43
- 45
- 47
- 49
- 51
- 53
- 55
- 57
- 59
- 61
- 63
- 65
- 67
- 69
- 71
- 73
- 75
- 77
- 79
- 81
- 83
- 85
- 87
- 89
- 91
- 93
- 95
- 97
- 99
- 101
- 03 Test 3
- Entrée
- Sortie attendue
- 20
- 1
- 3
- 5
- 7
- 9
- 11
- 13
- 15
- 17
- 19
- 04 Test 4
- Entrée
- Sortie attendue
- 2
- 1
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement