Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int brojac = 100;
- while(brojac >= 1) {
- if(brojac % 2 == 1) {
- cout << brojac << " ";
- }
- brojac--;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement