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